[Mlir-commits] [mlir] [mlir][Vector] Fix integration test for vector.maskedload narrow type… (PR #70431)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Oct 27 02:11:46 PDT 2023
https://github.com/tyb0807 created https://github.com/llvm/llvm-project/pull/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
>From b93de3afbb7b563928868f0f6de1312a30c8e509 Mon Sep 17 00:00:00 2001
From: tyb0807 <vuson at google.com>
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 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