From 42fd586e792a72a7831f03fed6d609129ca0ad2d Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Mon, 27 Jan 2025 09:00:01 -0800 Subject: [PATCH] Disable pytorch_interoperability_test under asan. PiperOrigin-RevId: 720189636 --- tests/BUILD | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/BUILD b/tests/BUILD index cd18370fc..59b93f316 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -816,14 +816,18 @@ jax_multiplatform_test( jax_multiplatform_test( name = "pytorch_interoperability_test", srcs = ["pytorch_interoperability_test.py"], + backend_tags = { + "gpu": [ + "noasan", # TODO(b/392599624): torch fails to build. + ], + }, enable_backends = [ "cpu", "gpu", ], tags = [ + "nomsan", # TODO(b/355237462): msan false-positives in torch? "not_build:arm", - # TODO(b/355237462): Re-enable once MSAN issue is addressed. - "nomsan", ], deps = py_deps("torch"), )