[Mlir-commits] [mlir] [mlir][Transforms] Add missing check in applyPermutation (PR #102099)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Aug 6 10:07:28 PDT 2024
================
@@ -0,0 +1,10 @@
+// RUN: not --crash mlir-opt %s --pass-pipeline="builtin.module(func.func(tosa-to-linalg-named))" 2>&1 | FileCheck -check-prefix=CHECK %s
+
+func.func @func1() {
+ %arg0 = tensor.empty() : tensor<3x4x5xi32>
+ %1110 = arith.constant dense<[3, 0, 1]> : tensor<3xi32>
+ %143 = tosa.transpose %arg0, %1110: (tensor<3x4x5xi32>, tensor<3xi32>) -> tensor<3x4x5xi32>
----------------
DarshanRamakant wrote:
Yes you are right, there was no check in the tosa.transpose verifier. I have added a check there as well now.
https://github.com/llvm/llvm-project/pull/102099
More information about the Mlir-commits
mailing list