Skip to content

Commit a4ed4f6

Browse files
CI: add NVIDIA A10 runner for tests (#1874)
* CI: add NVIDIA A10 runner for tests * CI: build for sm80 when running tests
1 parent 9e41b84 commit a4ed4f6

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/test-runner.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
gpu_type:
2727
type: string
2828
default: ""
29-
description: "GPU type for CUDA testing: T4, L40S"
29+
description: "GPU type for CUDA testing: T4, A10,L40S"
3030
# cpu_type currently only affects linux x64 CPU testing to select specific CPU architectures
3131
cpu_type:
3232
type: string
@@ -65,11 +65,14 @@ jobs:
6565
T4)
6666
TEST_RUNNER="bandb-aws-g4dn-4xlarge-plus-use1-public-80"
6767
;;
68+
A10)
69+
TEST_RUNNER="bandb-aws-g5-4xlarge-plus-use1-public-80"
70+
;;
6871
L40S)
6972
TEST_RUNNER="bandb-aws-g6e-4xlarge-plus-use1-public-80"
7073
;;
7174
*)
72-
echo "::error::Must specify gpu_type (T4 or L40S) for linux-x64 cuda backend"
75+
echo "::error::Must specify gpu_type (T4, A10, L40S) for linux-x64 cuda backend"
7376
exit 1
7477
;;
7578
esac
@@ -164,7 +167,7 @@ jobs:
164167
run: bash .github/scripts/build-cuda.sh
165168
env:
166169
cuda_version: ${{ inputs.cuda_version }}
167-
cuda_targets: "75;89"
170+
cuda_targets: "75;80;89"
168171

169172
- name: Upload build artifact
170173
uses: actions/upload-artifact@v4

.github/workflows/tests-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
# Linux x64 cross-product
5858
platform: [linux-x64]
59-
gpu_type: [T4, L40S]
59+
gpu_type: [T4, A10, L40S]
6060
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "13.0.2"]
6161

6262
include:

.github/workflows/tests-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
fail-fast: false
6565
matrix:
6666
platform: [linux-x64]
67-
gpu_type: [T4, L40S]
67+
gpu_type: [T4, A10, L40S]
6868
cuda_version: ["11.8.0", "12.8.1", "13.0.2"]
6969

7070
include:

0 commit comments

Comments
 (0)