From fa5bf9095274631e4fab723a218d3b4d52659396 Mon Sep 17 00:00:00 2001 From: Aart Bik Date: Wed, 10 Aug 2022 14:38:01 -0700 Subject: [PATCH] [mlir][sparse][bf16] disable two bf16 tests Supposedly our ABI issues were fixed, per issue: https://github.com/llvm/llvm-project/issues/55992 However, with a recent changes to bf16, these tests fail again; not sure why yet: https://reviews.llvm.org/D130832 https://lab.llvm.org/buildbot/#/builders/61/builds/30600 So we disable the tests for now. Issue is tracked in: https://github.com/llvm/llvm-project/issues/57042 Differential Revision: https://reviews.llvm.org/D131621 (cherry picked from commit 6b7459115f7b1c43f81ad8dfb5da9d206d3b1e06) --- .../Dialect/SparseTensor/CPU/dense_output_bf16.mlir | 3 +++ .../Integration/Dialect/SparseTensor/CPU/sparse_sum_bf16.mlir | 3 +++ 2 files changed, 6 insertions(+) diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/dense_output_bf16.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/dense_output_bf16.mlir index f776a3d1b8a0..fb392365c00b 100644 --- a/mlir/test/Integration/Dialect/SparseTensor/CPU/dense_output_bf16.mlir +++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/dense_output_bf16.mlir @@ -1,3 +1,6 @@ +// FIXME: see #57042 +// UNSUPPORTED: i386, x86_64 + // RUN: mlir-opt %s --sparse-compiler | \ // RUN: mlir-cpu-runner \ // RUN: -e entry -entry-point-result=void \ diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_sum_bf16.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_sum_bf16.mlir index f3307c510c4d..6f6a47828d1d 100644 --- a/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_sum_bf16.mlir +++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_sum_bf16.mlir @@ -1,3 +1,6 @@ +// FIXME: see #57042 +// UNSUPPORTED: i386, x86_64 + // RUN: mlir-opt %s --sparse-compiler | \ // RUN: mlir-cpu-runner \ // RUN: -e entry -entry-point-result=void \