From 25e4acfe25b5a874e320d38df34b84eb11163b54 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Mon, 22 Jan 2024 12:02:07 -0800 Subject: [PATCH] Disabled lax_scipy_special_functions_test under ASAN on GPU. This test is slow and times out in CI. PiperOrigin-RevId: 600527658 --- tests/BUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/BUILD b/tests/BUILD index 81822c5b6..77931797e 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -516,6 +516,9 @@ jax_test( jax_test( name = "lax_scipy_special_functions_test", srcs = ["lax_scipy_special_functions_test.py"], + backend_tags = { + "gpu": ["noasan"], # Times out. + }, shard_count = { "cpu": 20, "gpu": 20,