Skip to content

Commit 66f1770

Browse files
committed
Example shape dims general
1 parent a88dec3 commit 66f1770

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/plot_matrixmult.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
exit(-1)
2828

2929
# matrix dims
30-
M = 5
31-
K = 4
32-
N = 3
30+
M = 33
31+
K = 34
32+
N = 37
3333

3434
A = np.random.rand(M * K).astype(dtype=np.float32).reshape(M, K)
3535
B = np.random.rand(K * N).astype(dtype=np.float32).reshape(K, N)

0 commit comments

Comments
 (0)