Skip to content

Commit a7afcf7

Browse files
Jake VanderPlasGoogle-ML-Automation
authored andcommitted
Split jax.numpy set-like ops into separate test target
PiperOrigin-RevId: 814857706
1 parent 7b4aee0 commit a7afcf7

File tree

3 files changed

+419
-350
lines changed

3 files changed

+419
-350
lines changed

tests/BUILD

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -665,9 +665,9 @@ jax_multiplatform_test(
665665
"cpu": ["notsan"], # Test times out.
666666
},
667667
shard_count = {
668-
"cpu": 50,
669-
"gpu": 40,
670-
"tpu": 50,
668+
"cpu": 45,
669+
"gpu": 35,
670+
"tpu": 45,
671671
},
672672
tags = [
673673
"noasan", # Test times out on all backends
@@ -733,6 +733,27 @@ jax_multiplatform_test(
733733
]),
734734
)
735735

736+
jax_multiplatform_test(
737+
name = "lax_numpy_setops_test",
738+
srcs = ["lax_numpy_setops_test.py"],
739+
backend_tags = {
740+
"tpu": ["notsan"], # Test times out.
741+
"cpu": ["notsan"], # Test times out.
742+
},
743+
shard_count = {
744+
"cpu": 5,
745+
"gpu": 5,
746+
"tpu": 5,
747+
},
748+
tags = [
749+
"noasan", # Test times out on all backends
750+
],
751+
deps = py_deps([
752+
"absl/testing",
753+
"numpy",
754+
]),
755+
)
756+
736757
jax_multiplatform_test(
737758
name = "lax_numpy_ufuncs_test",
738759
srcs = ["lax_numpy_ufuncs_test.py"],

0 commit comments

Comments
 (0)