Skip to content

Commit 0d6c7f7

Browse files
authored
Merge pull request #53 from InfiniTensor/pass-block-sizes-to-the-second-mm-arrangement-in-addmm-arrangement
Pass block sizes to the second `mm.arrangement` in `addmm.arrangement`
2 parents 2d0a1ad + 71a3060 commit 0d6c7f7

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)