Bump memory limits for array_test and layout_test on TPU CI.

These use more than our CI's default memory limit (12GB) when run under tsan.

PiperOrigin-RevId: 638618718
This commit is contained in:
Peter Hawkins 2024-05-30 05:31:46 -07:00 committed by jax authors
parent a5fc31e425
commit 01b4cb6de0

View File

@ -269,6 +269,9 @@ jax_test(
jax_test(
name = "layout_test",
srcs = ["layout_test.py"],
backend_tags = {
"tpu": ["requires-mem:16g"], # Under tsan on 2x2 this test exceeds the default 12G memory limit.
},
tags = ["multiaccelerator"],
)
@ -318,6 +321,9 @@ jax_test(
jax_test(
name = "array_test",
srcs = ["array_test.py"],
backend_tags = {
"tpu": ["requires-mem:16g"], # Under tsan on 2x2 this test exceeds the default 12G memory limit.
},
tags = ["multiaccelerator"],
deps = [
"//jax:experimental",