Skip to content

Commit

Permalink
Move to JetPack 6.0 for Xavier
Browse files Browse the repository at this point in the history
- upgrade cross compilation cuda to 12.2 to match JetPack 6.0
- adds support for sm90a (THOR)

Signed-off-by: Janusz Lisiecki <[email protected]>
  • Loading branch information
JanuszL committed Jan 15, 2025
1 parent 041edf1 commit e1ad655
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmake/CUDA_utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ endfunction()
# List of currently used arch values
if (${ARCH} MATCHES "aarch64-")
# aarch64-linux
set(CUDA_known_archs "53" "62" "72" "75" "87")
set(CUDA_known_archs "53" "62" "72" "75" "87" "90a")
elseif (${ARCH} MATCHES "aarch64")
# aarch64 SBSA, only >=Volta
# from the whole list/; "70" "75" "80" "86"
Expand Down
8 changes: 4 additions & 4 deletions docker/Dockerfile.build.aarch64-linux
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG AARCH64_BASE_IMAGE=nvidia/cuda:11.8.0-devel-ubuntu20.04
FROM ${AARCH64_BASE_IMAGE}
ARG AARCH64_BASE_IMAGE=nvidia/cuda:12.6.3-devel-ubuntu20.04


ENV DEBIAN_FRONTEND=noninteractive \
CUDA_CROSS_VERSION=11-8 \
CUDA_CROSS_VERSION_DOT=11.8
CUDA_CROSS_VERSION=12-6 \
CUDA_CROSS_VERSION_DOT=12.6

RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub && \
apt-get update && apt-get install software-properties-common -y --no-install-recommends && \
Expand Down

0 comments on commit e1ad655

Please sign in to comment.