random_test: Split into two so that each target is small enough to fit within a medium timeout.

PiperOrigin-RevId: 571146766
This commit is contained in:
jax authors 2023-10-05 15:28:24 -07:00
parent 15126504a7
commit 8f911e1512
3 changed files with 1412 additions and 1310 deletions

View File

@ -704,10 +704,28 @@ jax_test(
"notsan", # Times out
],
},
# Use fewer cases to prevent timeouts.
backend_variant_args = {
"cpu": ["--jax_num_generated_cases=40"],
"cpu_x32": ["--jax_num_generated_cases=40"],
shard_count = {
"cpu": 30,
"gpu": 30,
"tpu": 40,
"iree": 30,
},
tags = ["noasan"], # Times out
)
jax_test(
name = "random_lax_test",
srcs = ["random_lax_test.py"],
backend_tags = {
"cpu": [
"notsan", # Times out
"nomsan", # Times out
],
"tpu": [
"optonly",
"nomsan", # Times out
"notsan", # Times out
],
},
shard_count = {
"cpu": 30,

1389
tests/random_lax_test.py Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff