Skip to content

Commit 4d4f603

Browse files
authored
[mlir][Vector] Fix integration test for vector.maskedload narrow type… (#70431)
… emulation Currently the expected CHECK values are not correct for `fcst_maskedload` from mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir
1 parent 6c3bc91 commit 4d4f603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ func.func @entry() {
206206
%passthru = arith.constant dense<[7, 8, 9, 10, 11, 12]> : vector<6xi4>
207207
%load = call @fcst_maskedload(%A, %passthru) : (memref<?xi4>, vector<6xi4>) -> (vector<6xi4>)
208208
vector.print %load : vector<6xi4>
209-
// CHECK: ( 1, 2, 3, -6, -5, -4 )
209+
// CHECK: ( 0, 1, 2, -6, -5, -4 )
210210
memref.dealloc %A : memref<?xi4>
211211

212212
return

0 commit comments

Comments
 (0)