From c98372725b5a3e56bb1c003ef9981d644b79bce7 Mon Sep 17 00:00:00 2001 From: Andrzej Warzynski Date: Fri, 31 Mar 2023 07:47:02 +0000 Subject: [PATCH] [mlir][sparse-compiler] Fix typo in a test This patch fixes a type that was introduced in https://reviews.llvm.org/D146917 and that triggered buildbot failure: * https://lab.llvm.org/buildbot#builders/220/builds/18225 This is rather straightforward (and fixes a bogus test failure), hence sending without a review. --- mlir/test/Integration/Dialect/SparseTensor/CPU/concatenate_dim_1.mlir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/concatenate_dim_1.mlir b/mlir/test/Integration/Dialect/SparseTensor/CPU/concatenate_dim_1.mlir index 15116e4..8607ac4 100644 --- a/mlir/test/Integration/Dialect/SparseTensor/CPU/concatenate_dim_1.mlir +++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/concatenate_dim_1.mlir @@ -15,7 +15,7 @@ // Do the same run, but now with direct IR generation and vectorization. Enable // Arm SVE if supported. // REDEFINE: %{option} = "enable-runtime-library=false enable-buffer-initialization=true vl=4 enable-arm-sve=%ENABLE_VLA reassociate-fp-reductions=true enable-index-optimizations=true" -// REDEFINE: %{run_option} = "%VLA_ARCH_ATTR_OPTIONS" +// REDEFINE: %{run_option} = %VLA_ARCH_ATTR_OPTIONS // RUN: %{compile} | %{run} #MAT_C_C = #sparse_tensor.encoding<{dimLevelType = ["compressed", "compressed"]}> -- 2.7.4