Skip to content

Commit

Permalink
[mlir][Vector] Fix integration test for vector.maskedload narrow type… (
Browse files Browse the repository at this point in the history
#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
  • Loading branch information
tyb0807 committed Oct 27, 2023
1 parent 6c3bc91 commit 4d4f603
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func.func @entry() {
%passthru = arith.constant dense<[7, 8, 9, 10, 11, 12]> : vector<6xi4>
%load = call @fcst_maskedload(%A, %passthru) : (memref<?xi4>, vector<6xi4>) -> (vector<6xi4>)
vector.print %load : vector<6xi4>
// CHECK: ( 1, 2, 3, -6, -5, -4 )
// CHECK: ( 0, 1, 2, -6, -5, -4 )
memref.dealloc %A : memref<?xi4>

return
Expand Down

0 comments on commit 4d4f603

Please sign in to comment.