Skip to content

Commit 4f861c2

Browse files
committed
increase matrix size to show overlap
1 parent 1161beb commit 4f861c2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/stream/map_reduce.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
# Map
2020
for stream in map_streams:
2121
with stream:
22-
x = rand.normal(size=(1, 1024 * 256))
23-
y = rand.normal(size=(1024 * 256, 1))
22+
x = rand.normal(size=(1, 1024**2))
23+
y = rand.normal(size=(1024**2, 1))
2424
z = cupy.matmul(x, y)
2525
zs.append(z)
2626
stop_event = stream.record()

0 commit comments

Comments
 (0)