Skip to content

Commit abdc17b

Browse files
CI: add NVIDIA A10 runner for tests
1 parent 9dd8b70 commit abdc17b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/test-runner.yml

Lines changed: 5 additions & 2 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

.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)