11module KernelIntrinsics
22
33"""
4- get_global_size()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
4+ get_global_size()::@NamedTuple{x::Int , y::Int , z::Int }
55
66Return the number of global work-items specified.
77"""
88function get_global_size end
99
1010"""
11- get_global_id()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
11+ get_global_id()::@NamedTuple{x::Int , y::Int , z::Int }
1212
1313Returns the unique global work-item ID.
1414
@@ -18,14 +18,14 @@ Returns the unique global work-item ID.
1818function get_global_id end
1919
2020"""
21- get_local_size()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
21+ get_local_size()::@NamedTuple{x::Int , y::Int , z::Int }
2222
2323Return the number of local work-items specified.
2424"""
2525function get_local_size end
2626
2727"""
28- get_local_id()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
28+ get_local_id()::@NamedTuple{x::Int , y::Int , z::Int }
2929
3030Returns the unique local work-item ID.
3131
@@ -35,14 +35,14 @@ Returns the unique local work-item ID.
3535function get_local_id end
3636
3737"""
38- get_num_groups()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
38+ get_num_groups()::@NamedTuple{x::Int , y::Int , z::Int }
3939
4040Returns the number of groups.
4141"""
4242function get_num_groups end
4343
4444"""
45- get_group_id()::@NamedTuple{x::Int32 , y::Int32 , z::Int32 }
45+ get_group_id()::@NamedTuple{x::Int , y::Int , z::Int }
4646
4747Returns the unique group ID.
4848
0 commit comments