Skip to content

Commit afa6b5e

Browse files
committed
[mlir][ArmSME] Fix matmul.mlir test after #83213
1 parent bfcd3fa commit afa6b5e

File tree

1 file changed

+4
-4
lines changed
  • mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE

1 file changed

+4
-4
lines changed

mlir/test/Integration/Dialect/Linalg/CPU/ArmSVE/matmul.mlir

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ func.func @matmul_f32() {
3636

3737
// Print and verify the output
3838
// F32-LABEL: SVE: START OF TEST OUTPUT
39-
vector.print str "SVE: START OF TEST OUTPUT"
39+
vector.print str "SVE: START OF TEST OUTPUT\n"
4040

4141
// F32-NEXT: Unranked Memref {{.*}} rank = 2 offset = 0 sizes = [5, 15] strides = [15, 1] data =
4242
// F32-COUNT-5: [29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788, 29.5788]
4343
%xf = tensor.cast %C_out : tensor<?x?xf32> to tensor<*xf32>
4444
call @printMemrefF32(%xf) : (tensor<*xf32>) -> ()
4545

4646
// F32-NEXT: SVE: END OF TEST OUTPUT
47-
vector.print str "SVE: END OF TEST OUTPUT"
47+
vector.print str "SVE: END OF TEST OUTPUT\n"
4848

4949
return
5050
}
@@ -73,15 +73,15 @@ func.func @matmul_mixed_ty() {
7373

7474
// Print and verify the output
7575
// MIXED-LABEL: SVE: START OF TEST OUTPUT
76-
vector.print str "SVE: START OF TEST OUTPUT"
76+
vector.print str "SVE: START OF TEST OUTPUT\n"
7777

7878
// MIXED-NEXT: Unranked Memref {{.*}} rank = 2 offset = 0 sizes = [5, 15] strides = [15, 1] data =
7979
// MIXED-COUNT-5: [45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387, 45387]
8080
%xf = tensor.cast %C_out : tensor<?x?xi32> to tensor<*xi32>
8181
call @printMemrefI32(%xf) : (tensor<*xi32>) -> ()
8282

8383
// MIXED-NEXT: SVE: END OF TEST OUTPUT
84-
vector.print str "SVE: END OF TEST OUTPUT"
84+
vector.print str "SVE: END OF TEST OUTPUT\n"
8585

8686
return
8787
}

0 commit comments

Comments
 (0)