From a7c64b8ce0a36e9562b5431a053e2b63834bd45c Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Mon, 9 Sep 2024 03:28:20 +0000 Subject: [PATCH] remove Jetson related things --- .pfnci/config.pbtxt | 15 --------------- README.rst | 1 - build.sh | 4 ---- 3 files changed, 20 deletions(-) diff --git a/.pfnci/config.pbtxt b/.pfnci/config.pbtxt index b49f9c49..dc5c7304 100644 --- a/.pfnci/config.pbtxt +++ b/.pfnci/config.pbtxt @@ -13,21 +13,6 @@ configs { command: ".pfnci/wheel-linux/main.sh 12.x 3.9" } } -configs { - key: "cupy-release-tools.linux.jetson" - value { - requirement { - cpu: 8 - memory: 36 - disk: 30 - } - time_limit { - seconds: 18000 - } - command: ".pfnci/wheel-linux/main.sh 10.2-jetson 3.9" - environment_variables { key: "CUPY_RELEASE_SKIP_VERIFY" value: "1" } - } -} configs { key: "cupy-release-tools.linux.rocm" value { diff --git a/README.rst b/README.rst index c55a8963..a1693cb8 100644 --- a/README.rst +++ b/README.rst @@ -79,7 +79,6 @@ This example builds wheel of CuPy with CUDA 10.0 for Python 3.8. ./dist.py --action build --target wheel-linux --python 3.8 --cuda 10.0 --source path/to/cupy_repo Use ``--target wheel-win`` for Windows build. -Use ``--cuda 10.2-jetson`` for JetPack (Tegra / CUDA 10.2 aarch64) build. Use ``--cuda rocm-5.0`` for ROCm (AMD GPU) build. The resulting asset (sdist/wheel) will be generated to the current directory. diff --git a/build.sh b/build.sh index 95f0bb57..62507bd4 100755 --- a/build.sh +++ b/build.sh @@ -22,10 +22,6 @@ case ${CUDA} in # CUDA (sdist) VERIFY_ARGS="${VERIFY_ARGS} --test release-tests/sparse --test release-tests/cudnn --test release-tests/nccl --test release-tests/pkg_sdist" ;; - 10.2-jetson ) - # CUDA Jetson (wheel) - VERIFY_ARGS="${VERIFY_ARGS} --test release-tests/sparse --test release-tests/cudnn" - ;; rocm-* ) # ROCm (wheel) VERIFY_ARGS="${VERIFY_ARGS}"