From b93de3afbb7b563928868f0f6de1312a30c8e509 Mon Sep 17 00:00:00 2001 From: tyb0807 Date: Fri, 27 Oct 2023 09:09:10 +0000 Subject: [PATCH] [mlir][Vector] Fix integration test for vector.maskedload narrow type emulation Currently the expected CHECK values are not correct for `fcst_maskedload` from mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir --- .../Dialect/Vector/CPU/test-rewrite-narrow-types.mlir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir b/mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir index 3c8c8d45013dc..a0b39a2b68f43 100644 --- a/mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir +++ b/mlir/test/Integration/Dialect/Vector/CPU/test-rewrite-narrow-types.mlir @@ -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, 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 return