From 0d55a7261b54bf87311a0aac50f3702366ed3e33 Mon Sep 17 00:00:00 2001 From: Tom Lin Date: Fri, 12 Nov 2021 00:14:07 +0000 Subject: [PATCH] Fix CI not installing rocThrust Fix CI CUDA flag version --- ci-prepare-bionic.sh | 2 +- ci-test-compile.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-prepare-bionic.sh b/ci-prepare-bionic.sh index 462d321..6aee569 100755 --- a/ci-prepare-bionic.sh +++ b/ci-prepare-bionic.sh @@ -254,7 +254,7 @@ setup_rocm() { wget -q -O - "https://repo.radeon.com/rocm/rocm.gpg.key" | sudo apt-key add - echo 'deb [arch=amd64] https://repo.radeon.com/rocm/apt/4.5 ubuntu main' | sudo tee /etc/apt/sources.list.d/rocm.list sudo apt-get update -qq - sudo apt-get install -y -qq rocm-dev + sudo apt-get install -y -qq rocm-dev rocthrust-dev export_var ROCM_PATH "/opt/rocm" export_var HIP_CXX "$ROCM_PATH/bin/hipcc" verify_bin_exists "$HIP_CXX" diff --git a/ci-test-compile.sh b/ci-test-compile.sh index 6544731..f72a76b 100755 --- a/ci-test-compile.sh +++ b/ci-test-compile.sh @@ -124,7 +124,7 @@ run_build() { AMD_ARCH="gfx_903" NV_ARCH="sm_70" -NV_ARCH_CCXY="cuda11.3,cc80" +NV_ARCH_CCXY="cuda11.4,cc80" build_gcc() { local name="gcc_build"