File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ module KernelIntrinsics
44 get_global_size()::@NamedTuple{x::Int32, y::Int32, z::Int32}
55
66Return the number of global work-items specified.
7-
8- !!! note
9- 1-based.
107"""
118function get_global_size end
129
1310"""
1411 get_global_id()::@NamedTuple{x::Int32, y::Int32, z::Int32}
1512
1613Returns the unique global work-item ID.
14+
15+ !!! note
16+ 1-based.
1717"""
1818function get_global_id end
1919
@@ -28,6 +28,9 @@ function get_local_size end
2828 get_local_id()::@NamedTuple{x::Int32, y::Int32, z::Int32}
2929
3030Returns the unique local work-item ID.
31+
32+ !!! note
33+ 1-based.
3134"""
3235function get_local_id end
3336
@@ -42,6 +45,9 @@ function get_num_groups end
4245 get_group_id()::@NamedTuple{x::Int32, y::Int32, z::Int32}
4346
4447Returns the unique group ID.
48+
49+ !!! note
50+ 1-based.
4551"""
4652function get_group_id end
4753
You can’t perform that action at this time.
0 commit comments