From c06f32ed13e15b71b7d1a84cf06317be80bd889f Mon Sep 17 00:00:00 2001 From: "Jan \"yenda\" Trmal" Date: Wed, 2 Oct 2024 14:00:06 +0200 Subject: [PATCH 1/2] add cuda12 option for aarch64 --- src/configure | 1 + 1 file changed, 1 insertion(+) diff --git a/src/configure b/src/configure index 3743c31f76b..0296c5d4285 100755 --- a/src/configure +++ b/src/configure @@ -434,6 +434,7 @@ Please open an issue at https://github.com/kaldi-asr/kaldi/issues and include\ #8_*) CUDA_ARCH="-gencode arch=compute_53,code=sm_53 -gencode arch=compute_62,code=sm_62" ;; 9_*) CUDA_ARCH="-gencode arch=compute_53,code=sm_53 -gencode arch=compute_62,code=sm_62" ;; 10_*|11_*) CUDA_ARCH="-gencode arch=compute_53,code=sm_53 -gencode arch=compute_62,code=sm_62 -gencode arch=compute_72,code=sm_72" ;; + 12_*) CUDA_ARCH="-gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_80,code=sm_80 -gencode arch=compute_86,code=sm_86 -gencode arch=compute_90,code=sm_90" ;; *) echo "Unsupported CUDA_VERSION (CUDA_VERSION=$CUDA_VERSION), please report it to Kaldi mailing list, together with 'nvcc -h' or 'ptxas -h' which lists allowed -gencode values..."; exit 1 ;; esac ;; From 36a194ad9b989b9ec9fa1249828b3745d3cd3933 Mon Sep 17 00:00:00 2001 From: "Jan \"yenda\" Trmal" Date: Fri, 4 Oct 2024 10:44:34 +0200 Subject: [PATCH 2/2] do not install python2 anymore --- .github/workflows/c-cpp.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6b902ef54ad..1331f8e11ce 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -19,8 +19,6 @@ jobs: - uses: actions/checkout@v4 - name: Install sox run: sudo apt-get install -y sox intel-mkl - - name: Install python2 - run: sudo apt-get install -y python2 - name: ccache uses: hendrikmuhs/ccache-action@v1.2 with: