[Mlir-commits] [mlir] 4d4f603 - [mlir][Vector] Fix integration test for vector.maskedload narrow type… (#70431)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Oct 27 02:26:23 PDT 2023


Author: tyb0807
Date: 2023-10-27T11:26:20+02:00
New Revision: 4d4f603793aa134d1d04b60782fac0e6b0ed2172

URL: https://github.com/llvm/llvm-project/commit/4d4f603793aa134d1d04b60782fac0e6b0ed2172
DIFF: https://github.com/llvm/llvm-project/commit/4d4f603793aa134d1d04b60782fac0e6b0ed2172.diff

LOG: [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

Added: 
    

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

Removed: 
    


################################################################################
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 3c8c8d45013dc82..a0b39a2b68f4388 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<?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


        


More information about the Mlir-commits mailing list