[Mlir-commits] [mlir] 7395584 - [mlir][tosa] Use traits to check output type aligns with input type (#193961)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri May 15 02:29:46 PDT 2026
Author: Luke Hutton
Date: 2026-05-15T10:29:41+01:00
New Revision: 739558477d33bc4d8cbdcbecc0484cdfddbc4b1d
URL: https://github.com/llvm/llvm-project/commit/739558477d33bc4d8cbdcbecc0484cdfddbc4b1d
DIFF: https://github.com/llvm/llvm-project/commit/739558477d33bc4d8cbdcbecc0484cdfddbc4b1d.diff
LOG: [mlir][tosa] Use traits to check output type aligns with input type (#193961)
Reduces code duplication and ensures the output shape aligns with the
input shape.
Added:
Modified:
mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
mlir/test/Dialect/Tosa/ops.mlir
mlir/test/Dialect/Tosa/verifier.mlir
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
index 71122ba8531c6..e135265b99881 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -2351,8 +2351,12 @@ def Tosa_ReshapeBlockScaledOp
// Operator: reverse
//===----------------------------------------------------------------------===//
def Tosa_ReverseOp: Tosa_Op<"reverse", [
- DeclareOpInterfaceMethods<InferShapedTypeOpInterface,
- ["inferReturnTypeComponents"]>, Pure]> {
+ DeclareOpInterfaceMethods<InferShapedTypeOpInterface,
+ ["inferReturnTypeComponents"]>,
+ SameOperandsAndResultRank,
+ SameOperandsAndResultShape,
+ SameOperandsAndResultElementType,
+ Pure]> {
let summary = "Reverse operator.";
let description = [{
diff --git a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
index a09b06fec3928..351dc1ae0dcd5 100644
--- a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+++ b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
@@ -5439,12 +5439,7 @@ LogicalResult WhileOp::verify() {
}
LogicalResult ReverseOp::verify() {
- if (verifySameElementTypes(*this, /* inType = */ getInput1().getType(),
- /* outType = */ getOutput().getType())
- .failed())
- return failure();
TensorType inputType = getInput1().getType();
- TensorType outputType = getOutput().getType();
int32_t reverseAxis = getAxis();
if (reverseAxis < 0)
@@ -5458,16 +5453,7 @@ LogicalResult ReverseOp::verify() {
<< inputRank << ") to be larger than reverse axis (" << reverseAxis
<< ")";
}
- if (outputType.hasRank()) {
- int64_t outputRank = outputType.getRank();
- if (inputType.hasRank() && outputRank != inputType.getRank())
- return emitOpError(
- "expect output tensor rank to be equal to input tensor rank");
- if (reverseAxis >= outputRank && (reverseAxis != 0 || outputRank != 0))
- return emitOpError("expect output tensor rank (")
- << outputRank << ") to be larger than reverse axis ("
- << reverseAxis << ")";
- }
+
return success();
}
diff --git a/mlir/test/Dialect/Tosa/ops.mlir b/mlir/test/Dialect/Tosa/ops.mlir
index a39f593b14263..5c368b3da4ff5 100644
--- a/mlir/test/Dialect/Tosa/ops.mlir
+++ b/mlir/test/Dialect/Tosa/ops.mlir
@@ -886,6 +886,13 @@ func.func @test_reverse(%arg0: tensor<13x21x3xf32>) -> tensor<13x21x3xf32> {
return %0 : tensor<13x21x3xf32>
}
+// -----
+// CHECK-LABEL: reverse_unranked
+func.func @test_reverse_unranked(%arg0: tensor<*xf32>) -> tensor<*xf32> {
+ %0 = tosa.reverse %arg0 {axis = 0 : i32} : (tensor<*xf32>) -> tensor<*xf32>
+ return %0 : tensor<*xf32>
+}
+
// -----
// CHECK-LABEL: slice
func.func @test_slice(%arg0: tensor<13x21x3xf32>) -> tensor<4x11x1xf32> {
diff --git a/mlir/test/Dialect/Tosa/verifier.mlir b/mlir/test/Dialect/Tosa/verifier.mlir
index a5976b79adb65..b3ae5b7a5d5f3 100644
--- a/mlir/test/Dialect/Tosa/verifier.mlir
+++ b/mlir/test/Dialect/Tosa/verifier.mlir
@@ -127,6 +127,30 @@ func.func @test_scalar_output_transpose(%arg0: tensor<*xf32>) -> tensor<f32> {
// -----
+func.func @test_reverse_element_type_mismatch(%arg0: tensor<2x3xi32>) -> tensor<2x3xf32> {
+ // expected-error at +1 {{'tosa.reverse' op requires the same element type for all operands and results}}
+ %0 = tosa.reverse %arg0 {axis = 1 : i32} : (tensor<2x3xi32>) -> tensor<2x3xf32>
+ return %0 : tensor<2x3xf32>
+}
+
+// -----
+
+func.func @test_reverse_shape_mismatch(%arg0: tensor<2x3xi32>) -> tensor<2x4xi32> {
+ // expected-error at +1 {{'tosa.reverse' op requires the same shape for all operands and results}}
+ %0 = tosa.reverse %arg0 {axis = 1 : i32} : (tensor<2x3xi32>) -> tensor<2x4xi32>
+ return %0 : tensor<2x4xi32>
+}
+
+// -----
+
+func.func @test_reverse_rank_mismatch(%arg0: tensor<2x3xi32>) -> tensor<1x2x3xi32> {
+ // expected-error at +1 {{'tosa.reverse' op result type has
diff erent rank than operands}}
+ %0 = tosa.reverse %arg0 {axis = 1 : i32} : (tensor<2x3xi32>) -> tensor<1x2x3xi32>
+ return %0 : tensor<1x2x3xi32>
+}
+
+// -----
+
func.func @test_slice_invalid_output_rank() {
%0 = tensor.empty() : tensor<4x31x31xf32>
%start = tosa.const_shape {values = dense<[1, 1]> : tensor<2xindex>} : () -> !tosa.shape<2>
More information about the Mlir-commits
mailing list