[Mlir-commits] [mlir] 8c9f506 - Disable mlir/test/mlir-cpu-runner/async-group.mlir with ASAN
Mehdi Amini
llvmlistbot at llvm.org
Fri Oct 8 20:24:09 PDT 2021
Author: Mehdi Amini
Date: 2021-10-09T03:02:53Z
New Revision: 8c9f506d8c59b45ae85f7414daabf544a463d045
URL: https://github.com/llvm/llvm-project/commit/8c9f506d8c59b45ae85f7414daabf544a463d045
DIFF: https://github.com/llvm/llvm-project/commit/8c9f506d8c59b45ae85f7414daabf544a463d045.diff
LOG: Disable mlir/test/mlir-cpu-runner/async-group.mlir with ASAN
This test is crashing 9 out of 10 runs in CI, but I can't reproduce
locally right now. Disabling to get the CI back to green and avoid
backsliding with more ASAN issues that would go unnoticed.
Added:
Modified:
mlir/test/mlir-cpu-runner/async-group.mlir
Removed:
################################################################################
diff --git a/mlir/test/mlir-cpu-runner/async-group.mlir b/mlir/test/mlir-cpu-runner/async-group.mlir
index a26c6390102d0..d5069291d1c63 100644
--- a/mlir/test/mlir-cpu-runner/async-group.mlir
+++ b/mlir/test/mlir-cpu-runner/async-group.mlir
@@ -11,6 +11,13 @@
// RUN: -shared-libs=%linalg_test_lib_dir/libmlir_async_runtime%shlibext \
// RUN: | FileCheck %s
+// This is crashing in CI "most of the time" on a AMD Rome CPU VM on GCP with:
+// Tracer caught signal 11: addr=0x7a800028 pc=0x2e81ba sp=0x7efd2a7ffd50
+// LeakSanitizer has encountered a fatal error.
+// This is hard to reproduce locally unfortunately. Disable it with ASAN/LSAN
+// to keep the bot green for now.
+// UNSUPPORTED: asan
+
func @main() {
%c1 = constant 1 : index
%c5 = constant 5 : index
More information about the Mlir-commits
mailing list