Skip to content

Commit 9a5fdf0

Browse files
Enable gb200 backend for xla_test
PiperOrigin-RevId: 874840441
1 parent 0a14749 commit 9a5fdf0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

build_tools/lint/tags.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
"xla_a100": "Runs on an a100.",
9494
"xla_h100": "Runs on an h100.",
9595
"xla_b200": "Runs on a b200.",
96+
"xla_gb200": "Runs on a gb200.",
9697
# Below tags are consumed by `xla_test`.
9798
"test_migrated_to_hlo_runner_pjrt": (
9899
"Adds the appropriate `xla/tests:pjrt_$BACKEND_client_registry` to the"

xla/tests/build_defs.bzl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ NVIDIA_GPU_BACKENDS = [
2727
"a100",
2828
"h100",
2929
"b200",
30+
"gb200",
3031
]
3132

3233
# The generic "gpu" backend includes the actual backends in this list.
@@ -35,6 +36,7 @@ NVIDIA_GPU_DEFAULT_BACKENDS = [
3536
"a100",
3637
"h100",
3738
"b200",
39+
"gb200",
3840
]
3941

4042
AMD_GPU_DEFAULT_BACKENDS = ["amdgpu_any"]
@@ -80,6 +82,7 @@ def prepare_nvidia_gpu_backend_data(backends, disabled_backends, backend_tags, b
8082
"a100": (8, 0),
8183
"h100": (9, 0),
8284
"b200": (10, 0),
85+
"gb200": (10, 0),
8386
}
8487
for gpu_backend in NVIDIA_GPU_BACKENDS:
8588
all_tags = new_backend_tags[gpu_backend]

0 commit comments

Comments
 (0)