Disable tests under sanitizers that are timing out in CI.

PiperOrigin-RevId: 475839926
This commit is contained in:
Peter Hawkins 2022-09-21 08:50:17 -07:00 committed by jax authors
parent fd90f40c45
commit d0e1c3e684

View File

@ -189,6 +189,9 @@ jax_test(
jax_test(
name = "pjit_test",
srcs = ["pjit_test.py"],
backend_tags = {
"tpu": ["notsan"], # Times out under tsan.
},
pjrt_c_api_bypass = True,
shard_count = {
"cpu": 5,
@ -530,6 +533,12 @@ jax_test(
jax_test(
name = "pmap_test",
srcs = ["pmap_test.py"],
backend_tags = {
"tpu": [
"noasan",
"notsan",
], # Times out under asan/tsan.
},
pjrt_c_api_bypass = True,
shard_count = {
"cpu": 30,