@@ -924,8 +924,8 @@ cdef class SyclDevice(_SyclDevice):
924
924
@property
925
925
def max_work_item_sizes1d (self ):
926
926
""" Returns the maximum number of work-items that are permitted in each
927
- dimension of the work-group of the nd_range<1>. The minimum value is
928
- `(1 )` for devices that evaluate to False for
927
+ dimension of the work-group of the ``sycl:: nd_range<1>`` . The minimum
928
+ value is ``(1, )`` for devices that evaluate to `` False`` for
929
929
:py:attr:`~has_aspect_custom`.
930
930
931
931
Returns:
@@ -945,8 +945,8 @@ cdef class SyclDevice(_SyclDevice):
945
945
@property
946
946
def max_work_item_sizes2d (self ):
947
947
""" Returns the maximum number of work-items that are permitted in each
948
- dimension of the work-group of the nd_range<2>. The minimum value is
949
- `(1; 1)` for devices that evaluate to False for
948
+ dimension of the work-group of the ``sycl:: nd_range<2>`` . The minimum
949
+ value is ``(1, 1,)`` for devices that evaluate to `` False`` for
950
950
:py:attr:`~has_aspect_custom`.
951
951
952
952
Returns:
@@ -968,8 +968,8 @@ cdef class SyclDevice(_SyclDevice):
968
968
@property
969
969
def max_work_item_sizes3d (self ):
970
970
""" Returns the maximum number of work-items that are permitted in each
971
- dimension of the work-group of the nd_range<3>. The minimum value is
972
- `(1; 1; 1)` for devices that evaluate to False for
971
+ dimension of the work-group of the ``sycl:: nd_range<3>`` . The minimum
972
+ value is ``(1, 1, 1,)`` for devices that evaluate to `` False`` for
973
973
:py:attr:`~has_aspect_custom`.
974
974
975
975
Returns:
0 commit comments