[mlir][NFC] Address filecheck_lint findings in Vector/CPU/test-broadcast.mlir.
authorBenjamin Chetioui <bchetioui@google.com>
Wed, 1 Mar 2023 08:18:14 +0000 (08:18 +0000)
committerBenjamin Chetioui <bchetioui@google.com>
Wed, 1 Mar 2023 08:18:28 +0000 (08:18 +0000)
Differential Revision: https://reviews.llvm.org/D144972

mlir/test/Integration/Dialect/Vector/CPU/test-broadcast.mlir

index b158997..0472329 100644 (file)
@@ -43,7 +43,7 @@ func.func @entry() {
   %x = vector.broadcast %f5 : f32 to vector<1xf32>
   %y = vector.broadcast %x  : vector<1xf32> to vector<8xf32>
   vector.print %y : vector<8xf32>
-  // CHECK : ( 5, 5, 5, 5, 5, 5, 5, 5 )
+  // CHECK: ( 5, 5, 5, 5, 5, 5, 5, 5 )
 
   // Test "stretch" in leading dimension.
   %s = vector.broadcast %v3 : vector<4xf32> to vector<1x4xf32>