Skip to content

Commit 71a3060

Browse files
committed
Pass block sizes to the second mm.arrangement in addmm.arrangement
1 parent 2d0a1ad commit 71a3060

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/ntops/kernels/addmm.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,13 @@ def arrangement(
3838
)
3939

4040
x_arranged, y_arranged, output_arranged, _ = mm.arrangement(
41-
x, y, output, input_precision
41+
x,
42+
y,
43+
output,
44+
input_precision,
45+
block_size_m=block_size_m,
46+
block_size_n=block_size_n,
47+
block_size_k=block_size_k,
4248
)
4349

4450
input_precision_arranged = input_precision

0 commit comments

Comments
 (0)