@@ -462,7 +462,7 @@ class __SYCL_EXPORT handler {
462
462
MStreamStorage.push_back (Stream);
463
463
}
464
464
465
- // / Helper utility for operation widely used throught different reduction
465
+ // / Helper utility for operation widely used through different reduction
466
466
// / implementations.
467
467
// / @{
468
468
template <class FunctorTy >
@@ -1654,7 +1654,7 @@ class __SYCL_EXPORT handler {
1654
1654
if constexpr (!Reduction::has_fast_atomics &&
1655
1655
!Reduction::has_atomic_add_float64) {
1656
1656
// The most basic implementation.
1657
- parallel_for_Impl <KernelName>(Range, Redu, KernelFunc);
1657
+ parallel_for_impl <KernelName>(Range, Redu, KernelFunc);
1658
1658
return ;
1659
1659
} else { // Can't "early" return for "if constexpr".
1660
1660
std::shared_ptr<detail::queue_impl> QueueCopy = MQueue;
@@ -1672,7 +1672,7 @@ class __SYCL_EXPORT handler {
1672
1672
Range, Redu);
1673
1673
} else {
1674
1674
// Resort to basic implementation as well.
1675
- parallel_for_Impl <KernelName>(Range, Redu, KernelFunc);
1675
+ parallel_for_impl <KernelName>(Range, Redu, KernelFunc);
1676
1676
return ;
1677
1677
}
1678
1678
} else {
@@ -1702,7 +1702,7 @@ class __SYCL_EXPORT handler {
1702
1702
1703
1703
template <typename KernelName, typename KernelType, int Dims,
1704
1704
typename Reduction>
1705
- void parallel_for_Impl (nd_range<Dims> Range, Reduction Redu,
1705
+ void parallel_for_impl (nd_range<Dims> Range, Reduction Redu,
1706
1706
KernelType KernelFunc) {
1707
1707
// This parallel_for() is lowered to the following sequence:
1708
1708
// 1) Call a kernel that a) call user's lambda function and b) performs
0 commit comments