@@ -629,7 +629,7 @@ class Op(ImmutableRecord):
629
629
work-group executes on a single compute unit with all work-items within
630
630
the work-group sharing local memory. A sub-group is an
631
631
implementation-dependent grouping of work-items within a work-group,
632
- analagous to an NVIDIA CUDA warp.
632
+ analogous to an NVIDIA CUDA warp.
633
633
634
634
.. attribute:: kernel_name
635
635
@@ -723,7 +723,7 @@ class MemAccess(ImmutableRecord):
723
723
work-group executes on a single compute unit with all work-items within
724
724
the work-group sharing local memory. A sub-group is an
725
725
implementation-dependent grouping of work-items within a work-group,
726
- analagous to an NVIDIA CUDA warp.
726
+ analogous to an NVIDIA CUDA warp.
727
727
728
728
.. attribute:: kernel_name
729
729
@@ -1109,7 +1109,7 @@ def _get_lid_and_gid_strides(knl, array, index):
1109
1109
1110
1110
# create lid_strides and gid_strides dicts
1111
1111
1112
- # strides are coefficents in flattened index, i.e., we want
1112
+ # strides are coefficients in flattened index, i.e., we want
1113
1113
# lid_strides = {0:l0, 1:l1, 2:l2, ...} and
1114
1114
# gid_strides = {0:g0, 1:g1, 2:g2, ...},
1115
1115
# where l0, l1, l2, g0, g1, and g2 come from flattened index
@@ -1723,7 +1723,7 @@ def get_op_map(program, count_redundant_work=False,
1723
1723
:arg subgroup_size: (currently unused) An :class:`int`, :class:`str`
1724
1724
``"guess"``, or *None* that specifies the sub-group size. An OpenCL
1725
1725
sub-group is an implementation-dependent grouping of work-items within
1726
- a work-group, analagous to an NVIDIA CUDA warp. subgroup_size is used,
1726
+ a work-group, analogous to an NVIDIA CUDA warp. subgroup_size is used,
1727
1727
e.g., when counting a :class:`MemAccess` whose count_granularity
1728
1728
specifies that it should only be counted once per sub-group. If set to
1729
1729
*None* an attempt to find the sub-group size using the device will be
@@ -1921,7 +1921,7 @@ def get_mem_access_map(program, count_redundant_work=False,
1921
1921
:arg subgroup_size: An :class:`int`, :class:`str` ``"guess"``, or
1922
1922
*None* that specifies the sub-group size. An OpenCL sub-group is an
1923
1923
implementation-dependent grouping of work-items within a work-group,
1924
- analagous to an NVIDIA CUDA warp. subgroup_size is used, e.g., when
1924
+ analogous to an NVIDIA CUDA warp. subgroup_size is used, e.g., when
1925
1925
counting a :class:`MemAccess` whose count_granularity specifies that it
1926
1926
should only be counted once per sub-group. If set to *None* an attempt
1927
1927
to find the sub-group size using the device will be made, if this fails
@@ -2085,7 +2085,7 @@ def get_synchronization_map(program, subgroup_size=None, entrypoint=None):
2085
2085
:arg subgroup_size: (currently unused) An :class:`int`, :class:`str`
2086
2086
``"guess"``, or *None* that specifies the sub-group size. An OpenCL
2087
2087
sub-group is an implementation-dependent grouping of work-items within
2088
- a work-group, analagous to an NVIDIA CUDA warp. subgroup_size is used,
2088
+ a work-group, analogous to an NVIDIA CUDA warp. subgroup_size is used,
2089
2089
e.g., when counting a :class:`MemAccess` whose count_granularity
2090
2090
specifies that it should only be counted once per sub-group. If set to
2091
2091
*None* an attempt to find the sub-group size using the device will be
0 commit comments