We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1161beb commit 4f861c2Copy full SHA for 4f861c2
1 file changed
examples/stream/map_reduce.py
@@ -19,8 +19,8 @@
19
# Map
20
for stream in map_streams:
21
with stream:
22
- x = rand.normal(size=(1, 1024 * 256))
23
- y = rand.normal(size=(1024 * 256, 1))
+ x = rand.normal(size=(1, 1024**2))
+ y = rand.normal(size=(1024**2, 1))
24
z = cupy.matmul(x, y)
25
zs.append(z)
26
stop_event = stream.record()
0 commit comments