Skip to content

Commit c81968f

Browse files
committed
fixup! [mlir][vector] Add tests for populateSinkVectorBroadcastPatterns (1/n)
Add missing newline
1 parent 9db316c commit c81968f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/test/Dialect/Vector/sink-vector-broadcast.mlir

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
func.func @broadcast_scalar_with_bcast(%arg1: index, %arg2: index) -> vector<1x4xindex> {
1414
%0 = vector.broadcast %arg1 : index to vector<1x4xindex>
1515
%1 = vector.broadcast %arg2 : index to vector<1x4xindex>
16-
%2 = arith.addi %0, %1 : vector<1x4xindex> return %2 : vector<1x4xindex>
16+
%2 = arith.addi %0, %1 : vector<1x4xindex>
17+
return %2 : vector<1x4xindex>
1718
}
1819

1920
// CHECK-LABEL: func.func @broadcast_scalar_with_bcast_scalable(

0 commit comments

Comments
 (0)