@@ -214,16 +214,16 @@ event submit_with_event_impl(const queue &Q, PropertiesT Props,
214214
215215template <typename KernelName, typename PropertiesT, typename KernelType,
216216 int Dims>
217- void submit_kernel_direct_impl (const queue &Q, PropertiesT Props, nd_range<Dims> Range,
218- const KernelType &KernelFunc,
219- const sycl::detail::code_location &CodeLoc);
217+ void submit_kernel_direct_impl (const queue &Q, PropertiesT Props,
218+ nd_range<Dims> Range,
219+ const KernelType &KernelFunc,
220+ const sycl::detail::code_location &CodeLoc);
220221
221222template <typename KernelName, typename PropertiesT, typename KernelType,
222223 int Dims>
223- event submit_kernel_direct_with_event_impl (const queue &Q, PropertiesT Props,
224- nd_range<Dims> Range,
225- const KernelType &KernelFunc,
226- const sycl::detail::code_location &CodeLoc);
224+ event submit_kernel_direct_with_event_impl (
225+ const queue &Q, PropertiesT Props, nd_range<Dims> Range,
226+ const KernelType &KernelFunc, const sycl::detail::code_location &CodeLoc);
227227} // namespace detail
228228} // namespace ext::oneapi::experimental
229229
@@ -2718,7 +2718,8 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
27182718 detail::tls_code_loc_t TlsCodeLocCapture (CodeLoc);
27192719
27202720#ifdef __DPCPP_ENABLE_UNFINISHED_NO_CGH_SUBMIT
2721- return submit_kernel_direct_with_event<detail::WrapAs::single_task, KernelName>(
2721+ return submit_kernel_direct_with_event<detail::WrapAs::single_task,
2722+ KernelName>(
27222723 ext::oneapi::experimental::empty_properties_t {}, nd_range<1 >{1 , 1 },
27232724 KernelFunc);
27242725
@@ -3279,8 +3280,8 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
32793280 detail::tls_code_loc_t TlsCodeLocCapture (CodeLoc);
32803281#ifdef __DPCPP_ENABLE_UNFINISHED_NO_CGH_SUBMIT
32813282 if constexpr (sizeof ...(RestT) == 1 ) {
3282- return submit_kernel_direct_with_event<detail::WrapAs::parallel_for, KernelName,
3283- sycl::nd_item<Dims>>(
3283+ return submit_kernel_direct_with_event<detail::WrapAs::parallel_for,
3284+ KernelName, sycl::nd_item<Dims>>(
32843285 ext::oneapi::experimental::empty_properties_t {}, Range, Rest...);
32853286 } else {
32863287 return submit (
@@ -3680,7 +3681,8 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
36803681
36813682 template <typename KernelName, typename PropertiesT, typename KernelType,
36823683 int Dims>
3683- friend event ext::oneapi::experimental::detail::submit_kernel_direct_with_event_impl (
3684+ friend event
3685+ ext::oneapi::experimental::detail::submit_kernel_direct_with_event_impl (
36843686 const queue &Q, PropertiesT Props, nd_range<Dims> Range,
36853687 const KernelType &KernelFunc, const sycl::detail::code_location &CodeLoc);
36863688
@@ -3797,33 +3799,27 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
37973799 bool IsTopCodeLoc) const ;
37983800
37993801 event submit_kernel_direct_with_event_impl (
3800- nd_range<1 > Range,
3801- const detail::v1::KernelRuntimeInfo &KRInfo,
3802+ nd_range<1 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38023803 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38033804
38043805 event submit_kernel_direct_with_event_impl (
3805- nd_range<2 > Range,
3806- const detail::v1::KernelRuntimeInfo &KRInfo,
3806+ nd_range<2 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38073807 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38083808
38093809 event submit_kernel_direct_with_event_impl (
3810- nd_range<3 > Range,
3811- const detail::v1::KernelRuntimeInfo &KRInfo,
3810+ nd_range<3 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38123811 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38133812
38143813 void submit_kernel_direct_without_event_impl (
3815- nd_range<1 > Range,
3816- const detail::v1::KernelRuntimeInfo &KRInfo,
3814+ nd_range<1 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38173815 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38183816
38193817 void submit_kernel_direct_without_event_impl (
3820- nd_range<2 > Range,
3821- const detail::v1::KernelRuntimeInfo &KRInfo,
3818+ nd_range<2 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38223819 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38233820
38243821 void submit_kernel_direct_without_event_impl (
3825- nd_range<3 > Range,
3826- const detail::v1::KernelRuntimeInfo &KRInfo,
3822+ nd_range<3 > Range, const detail::v1::KernelRuntimeInfo &KRInfo,
38273823 const detail::code_location &CodeLoc, bool IsTopCodeLoc) const ;
38283824
38293825 // / A template-free version of submit_without_event as const member function.
@@ -3871,10 +3867,11 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
38713867 template <detail::WrapAs WrapAsVal, typename KernelName = detail::auto_name,
38723868 typename ElementType = void , typename PropertiesT,
38733869 typename KernelType, int Dims>
3874- event submit_kernel_direct_with_event (PropertiesT Props, nd_range<Dims> Range,
3875- const KernelType &KernelFunc,
3876- const detail::code_location &CodeLoc =
3877- detail::code_location::current ()) const {
3870+ event
3871+ submit_kernel_direct_with_event (PropertiesT Props, nd_range<Dims> Range,
3872+ const KernelType &KernelFunc,
3873+ const detail::code_location &CodeLoc =
3874+ detail::code_location::current ()) const {
38783875 detail::tls_code_loc_t TlsCodeLocCapture (CodeLoc);
38793876 detail::v1::KernelRuntimeInfo KRInfo{};
38803877
@@ -3888,16 +3885,16 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
38883885 PropertiesT>::wrap (KernelFunc);
38893886
38903887 return submit_kernel_direct_with_event_impl (Range, KRInfo,
3891- TlsCodeLocCapture.query (),
3892- TlsCodeLocCapture.isToplevel ());
3888+ TlsCodeLocCapture.query (),
3889+ TlsCodeLocCapture.isToplevel ());
38933890 }
38943891
38953892 template <typename KernelName = detail::auto_name, typename PropertiesT,
38963893 typename KernelType, int Dims>
3897- void submit_kernel_direct_without_event (PropertiesT Props, nd_range<Dims> Range,
3898- const KernelType &KernelFunc,
3899- const detail::code_location &CodeLoc =
3900- detail::code_location::current ()) const {
3894+ void submit_kernel_direct_without_event (
3895+ PropertiesT Props, nd_range<Dims> Range, const KernelType &KernelFunc,
3896+ const detail::code_location &CodeLoc =
3897+ detail::code_location::current ()) const {
39013898 detail::tls_code_loc_t TlsCodeLocCapture (CodeLoc);
39023899 detail::v1::KernelRuntimeInfo KRInfo{};
39033900
@@ -3911,8 +3908,8 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
39113908 sycl::nd_item<Dims>, PropertiesT>::wrap (KernelFunc);
39123909
39133910 submit_kernel_direct_without_event_impl (Range, KRInfo,
3914- TlsCodeLocCapture.query (),
3915- TlsCodeLocCapture.isToplevel ());
3911+ TlsCodeLocCapture.query (),
3912+ TlsCodeLocCapture.isToplevel ());
39163913 }
39173914
39183915 // / Submits a command group function object to the queue, in order to be
0 commit comments