From 9471bb304576aa7649c6e24ec170ecf3d05c0fd7 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Thu, 11 May 2023 08:32:55 -0700 Subject: [PATCH] Disable sparsify_test on CPU under tsan. Under tsan this test times out in CI. PiperOrigin-RevId: 531210930 --- tests/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/BUILD b/tests/BUILD index 97be608d7..6fa02dce4 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -778,7 +778,10 @@ jax_test( srcs = ["sparsify_test.py"], args = ["--jax_bcoo_cusparse_lowering=true"], backend_tags = { - "cpu": ["noasan"], # Times out under asan + "cpu": [ + "noasan", # Times out under asan + "notsan", # Times out under asan + ], "tpu": [ "noasan", # Times out under asan. ],