Re-enable disabled XNNPACK delegate tests with tsan

PiperOrigin-RevId: 313697493
Change-Id: I2d4785f0d283e28e4655bbeea08db580671490d9
This commit is contained in:
Marat Dukhan 2020-05-28 18:16:19 -07:00 committed by TensorFlower Gardener
parent 988f124ddb
commit 3ed7b0732e
2 changed files with 4 additions and 7 deletions

View File

@ -291,9 +291,6 @@ cc_test(
"//tensorflow:emscripten": EMSCRIPTEN_LINKOPTS, "//tensorflow:emscripten": EMSCRIPTEN_LINKOPTS,
"//conditions:default": [], "//conditions:default": [],
}), }),
tags = [
"notsan", # TODO(b/155404603)
],
deps = [ deps = [
":pool_2d_tester", ":pool_2d_tester",
":test_main", ":test_main",

View File

@ -164,11 +164,11 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
tf_http_archive( tf_http_archive(
name = "XNNPACK", name = "XNNPACK",
sha256 = "05904bb15b7a5abadc261c16e6be3ac2314d6d4384aa16349b7354d9fa8bbb4f", sha256 = "dfa6181e238f0ca88a641952678cd7f3e38da541d8b731ce3fea1d0eeffb6101",
strip_prefix = "XNNPACK-1e5f80293b3c0197aaf44f3adb9329401fd36ed4", strip_prefix = "XNNPACK-b2217ddb5fa74db09d9da1326902269ae18e41ad",
urls = [ urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/XNNPACK/archive/1e5f80293b3c0197aaf44f3adb9329401fd36ed4.zip", "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/XNNPACK/archive/b2217ddb5fa74db09d9da1326902269ae18e41ad.zip",
"https://github.com/google/XNNPACK/archive/1e5f80293b3c0197aaf44f3adb9329401fd36ed4.zip", "https://github.com/google/XNNPACK/archive/b2217ddb5fa74db09d9da1326902269ae18e41ad.zip",
], ],
) )