Skip to content

Commit

Permalink
add CUDA GPU Runner
Browse files Browse the repository at this point in the history
  • Loading branch information
tinglvv committed Jul 2, 2024
1 parent 8e4aedf commit f7da0c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
LINUX_GPU_RUNNER = "linux.g5.4xlarge.nvidia.gpu"
LINUX_CPU_RUNNER = "linux.2xlarge"
LINUX_AARCH64_RUNNER = "linux.arm64.2xlarge"
LINUX_AARCH64_GPU_RUNNER = "linux.arm64.m7g.4xlarge"
WIN_GPU_RUNNER = "windows.8xlarge.nvidia.gpu"
WIN_CPU_RUNNER = "windows.4xlarge"
MACOS_M1_RUNNER = "macos-m1-stable"
Expand Down Expand Up @@ -117,7 +118,10 @@ def validation_runner(arch_type: str, os: str) -> str:
else:
return LINUX_CPU_RUNNER
elif os == LINUX_AARCH64:
return LINUX_AARCH64_RUNNER
if arch_type == CUDA_AARCH64:
return LINUX_AARCH64_GPU_RUNNER
else:
return LINUX_AARCH64_RUNNER
elif os == WINDOWS:
if arch_type == CUDA:
return WIN_GPU_RUNNER
Expand Down

0 comments on commit f7da0c8

Please sign in to comment.