File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 6666 runs-on : ' ubuntu-latest'
6767 base-image : " ubuntu:22.04"
6868 makeflags : " --jobs=4 --output-sync=target"
69+ - build-type : ' cublas'
70+ cuda-major-version : " 12"
71+ cuda-minor-version : " 0"
72+ platforms : ' linux/arm64'
73+ tag-latest : ' false'
74+ tag-suffix : ' -nvidia-l4t-arm64'
75+ base-image : " nvcr.io/nvidia/l4t-jetpack:r36.4.0"
76+ runs-on : ' ubuntu-24.04-arm'
77+ makeflags : " --jobs=4 --output-sync=target"
78+ skip-drivers : ' true'
Original file line number Diff line number Diff line change @@ -78,6 +78,16 @@ RUN <<EOT bash
7878 fi
7979EOT
8080
81+ # https://github.com/NVIDIA/Isaac-GR00T/issues/343
82+ RUN <<EOT bash
83+ if [ "${BUILD_TYPE}" = "cublas" ] && [ "${TARGETARCH}" = "arm64" ]; then
84+ wget https://developer.download.nvidia.com/compute/cudss/0.6.0/local_installers/cudss-local-tegra-repo-ubuntu2204-0.6.0_0.6.0-1_arm64.deb && \
85+ dpkg -i cudss-local-tegra-repo-ubuntu2204-0.6.0_0.6.0-1_arm64.deb && \
86+ cp /var/cudss-local-tegra-repo-ubuntu2204-0.6.0/cudss-*-keyring.gpg /usr/share/keyrings/ && \
87+ apt-get update && apt-get -y install cudss
88+ fi
89+ EOT
90+
8191# If we are building with clblas support, we need the libraries for the builds
8292RUN if [ "${BUILD_TYPE}" = "clblas" ] && [ "${SKIP_DRIVERS}" = "false" ]; then \
8393 apt-get update && \
You can’t perform that action at this time.
0 commit comments