-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathp06.mojo
More file actions
61 lines (49 loc) · 1.72 KB
/
Copy pathp06.mojo
File metadata and controls
61 lines (49 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ===----------------------------------------------------------------------=== #
#
# This file is Modular Inc proprietary.
#
# ===----------------------------------------------------------------------=== #
from std.memory import UnsafePointer
from std.gpu import thread_idx, block_idx, block_dim
from std.gpu.host import DeviceContext
from std.testing import assert_equal
# ANCHOR: add_10_blocks
comptime SIZE = 9
comptime BLOCKS_PER_GRID = (3, 1)
comptime THREADS_PER_BLOCK = (4, 1)
comptime dtype = DType.float32
def add_10_blocks(
output: UnsafePointer[Scalar[dtype], MutAnyOrigin],
a: UnsafePointer[Scalar[dtype], MutAnyOrigin],
size: Int,
):
var i = block_dim.x * block_idx.x + thread_idx.x
# FILL ME IN (roughly 2 lines)
# ANCHOR_END: add_10_blocks
def main() raises:
with DeviceContext() as ctx:
var out = ctx.enqueue_create_buffer[dtype](SIZE)
out.enqueue_fill(0)
var a = ctx.enqueue_create_buffer[dtype](SIZE)
a.enqueue_fill(0)
with a.map_to_host() as a_host:
for i in range(SIZE):
a_host[i] = Scalar[dtype](i)
ctx.enqueue_function[add_10_blocks](
out,
a,
SIZE,
grid_dim=BLOCKS_PER_GRID,
block_dim=THREADS_PER_BLOCK,
)
var expected = ctx.enqueue_create_host_buffer[dtype](SIZE)
expected.enqueue_fill(0)
ctx.synchronize()
for i in range(SIZE):
expected[i] = Scalar[dtype](i + 10)
with out.map_to_host() as out_host:
print("out:", out_host)
print("expected:", expected)
for i in range(SIZE):
assert_equal(out_host[i], expected[i])
print("Puzzle 06 complete ✅")