Skip to content

Commit 1e33330

Browse files
committed
mlir/TosaToTensor: fix typos in test
This patch fixes a misspelt CHECK-LABEL in tosa-to-tensor.mlir. Signed-off-by: Ramkumar Ramachandra <r@artagnon.com> Differential Revision: https://reviews.llvm.org/D139085
1 parent 57c8935 commit 1e33330

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: mlir-opt --split-input-file --tosa-to-tensor %s -o -| FileCheck %s
22

3-
// CHECK-LABLE: func @slice
3+
// CHECK-LABEL: @slice
44
func.func @slice(%arg0: tensor<6xf32>) ->() {
55
// CHECK: [[SLICE:%.+]] = tensor.extract_slice %arg0[2] [1] [1]
66
%0 = "tosa.slice"(%arg0) {start = [2], size = [1]} : (tensor<6xf32>) -> (tensor<1xf32>)
@@ -9,7 +9,7 @@ func.func @slice(%arg0: tensor<6xf32>) ->() {
99

1010
// -----
1111

12-
// CHECK-LABLE: func @slice_dyn
12+
// CHECK-LABEL: @slice_dyn
1313
func.func @slice_dyn(%arg0: tensor<?xf32>) -> (tensor<?xf32>) {
1414
// CHECK: %[[C0:.+]] = arith.constant 0 : index
1515
// CHECK: %[[DIM:.+]] = tensor.dim %arg0, %[[C0]]

0 commit comments

Comments
 (0)