From 35f896c7a3cce5cb552f3737aa295e43db7b5798 Mon Sep 17 00:00:00 2001 From: Dustin Franklin Date: Tue, 2 Mar 2021 20:04:45 -0500 Subject: [PATCH] updates for L4T R32.5.0 --- docker/build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/build.sh b/docker/build.sh index f09767408..795613b54 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -16,7 +16,11 @@ BASE_IMAGE=$1 source tools/l4t-version.sh if [ -z $BASE_IMAGE ]; then - if [ $L4T_VERSION = "32.4.4" ]; then + if [ $L4T_VERSION = "32.5.1" ]; then + BASE_IMAGE="nvcr.io/nvidia/l4t-pytorch:r32.5.0-pth1.6-py3" + elif [ $L4T_VERSION = "32.5.0" ]; then + BASE_IMAGE="nvcr.io/nvidia/l4t-pytorch:r32.5.0-pth1.6-py3" + elif [ $L4T_VERSION = "32.4.4" ]; then BASE_IMAGE="nvcr.io/nvidia/l4t-pytorch:r32.4.4-pth1.6-py3" elif [ $L4T_VERSION = "32.4.3" ]; then BASE_IMAGE="nvcr.io/nvidia/l4t-pytorch:r32.4.3-pth1.6-py3"