-
Notifications
You must be signed in to change notification settings - Fork 373
Expand file tree
/
Copy pathp03.mojo
More file actions
68 lines (57 loc) · 2.1 KB
/
Copy pathp03.mojo
File metadata and controls
68 lines (57 loc) · 2.1 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
62
63
64
65
66
67
68
# ===----------------------------------------------------------------------=== #
# Copyright (c) 2026, Modular Inc. All rights reserved.
#
# Licensed under the Apache License v2.0 with LLVM Exceptions:
# https://llvm.org/LICENSE.txt
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ===----------------------------------------------------------------------=== #
from std.memory import Pointer
from std.gpu import thread_idx
from max.gpu.host import DeviceContext
from std.testing import assert_equal
# ANCHOR: add_10_guard
comptime SIZE = 4
comptime BLOCKS_PER_GRID = 1
comptime THREADS_PER_BLOCK = 8
comptime dtype = DType.float32
def add_10_guard(
output: Pointer[Scalar[dtype], MutAnyOrigin],
a: Pointer[Scalar[dtype], MutAnyOrigin],
size_dev: Int32,
):
var size = Int(size_dev)
var i = thread_idx.x
# FILL ME IN (roughly 2 lines)
# ANCHOR_END: add_10_guard
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_guard](
out,
a,
Int32(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 03 complete ✅")