Skip to content

Commit f0bdeb4

Browse files
authored
[mlir][tosa] Cleanup ops.mlir (#134751)
* add missing CHECK-LABEL * removed whitespace for consistency Signed-off-by: Jerry Ge <jerry.ge@arm.com>
1 parent f4328d0 commit f0bdeb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/Dialect/Tosa/ops.mlir

+1-1
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ func.func @test_max_pool2d_f8E5M2(%arg0: tensor<1x32x32x8xf8E5M2>) -> tensor<1x3
852852
}
853853

854854
// -----
855-
856855
// CHECK-LABEL: transpose_conv2d_f8E5M2
857856
func.func @test_transpose_conv2d_f8E5M2(%arg0: tensor<1x32x32x8xf8E5M2>, %arg1: tensor<16x1x1x8xf8E5M2>, %arg2: tensor<16xf16>, %arg3: tensor<1xf8E5M2>, %arg4: tensor<1xf8E5M2>) -> tensor<1x32x32x16xf16> {
858857
%0 = tosa.transpose_conv2d %arg0, %arg1, %arg2, %arg3, %arg4 {acc_type = f16, out_pad = array<i64: 0, 0, 0, 0>, stride = array<i64: 1, 1>} : (tensor<1x32x32x8xf8E5M2>, tensor<16x1x1x8xf8E5M2>, tensor<16xf16>, tensor<1xf8E5M2>, tensor<1xf8E5M2>) -> tensor<1x32x32x16xf16>
@@ -922,6 +921,7 @@ func.func @test_tile_f8E5M2(%arg0: tensor<13x21x3xf8E5M2>) -> tensor<39x21x6xf8E
922921
}
923922

924923
// -----
924+
// CHECK-LABEL: transpose_f8E5M2
925925
func.func @test_transpose_f8E5M2(%arg0: tensor<13x21x3xf8E5M2>) -> tensor<3x13x21xf8E5M2> {
926926
%1 = tosa.transpose %arg0 {perms = array<i32: 2, 0, 1>} : (tensor<13x21x3xf8E5M2>) -> tensor<3x13x21xf8E5M2>
927927
return %1 : tensor<3x13x21xf8E5M2>

0 commit comments

Comments
 (0)