Skip to content

Commit b9f5c26

Browse files
oleksandr-pavlykndgrigorian
authored andcommitted
Another round of review changes
Tuple[int,] -> Tuple[int] workgroup -> work-group work group -> work-group
1 parent 6ee2b23 commit b9f5c26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dpctl/_sycl_device.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ cdef class SyclDevice(_SyclDevice):
929929
:py:attr:`~has_aspect_custom`.
930930
931931
Returns:
932-
Tuple[int,]:
932+
Tuple[int]:
933933
A one-tuple with the maximum allowed value for a 1D range
934934
used to enqueue a kernel on the device.
935935
"""
@@ -994,7 +994,7 @@ cdef class SyclDevice(_SyclDevice):
994994
Returns:
995995
Tuple[int]:
996996
A three-tuple whose length depends on the number of
997-
workgroup dimensions supported by the device.
997+
work-group dimensions supported by the device.
998998
999999
.. deprecated:: 0.14
10001000
The property is deprecated use :py:attr:`~max_work_item_sizes3d`
@@ -1032,7 +1032,7 @@ cdef class SyclDevice(_SyclDevice):
10321032
10331033
Returns:
10341034
int:
1035-
The maximum supported work group size.
1035+
The maximum supported work-group size.
10361036
"""
10371037
cdef uint32_t max_work_group_size = 0
10381038
max_work_group_size = DPCTLDevice_GetMaxWorkGroupSize(self._device_ref)

0 commit comments

Comments
 (0)