@@ -327,8 +327,7 @@ template <typename T>
327327void copy (queue Q, const T *Src, T *Dest, size_t Count,
328328 const sycl::detail::code_location &CodeLoc =
329329 sycl::detail::code_location::current ()) {
330- submit (
331- Q, [&](handler &CGH) { copy<T>(CGH, Src, Dest, Count); }, CodeLoc);
330+ submit (Q, [&](handler &CGH) { copy<T>(CGH, Src, Dest, Count); }, CodeLoc);
332331}
333332
334333inline void memset (handler &CGH, void *Ptr, int Value, size_t NumBytes) {
@@ -348,8 +347,7 @@ template <typename T>
348347void fill (sycl::queue Q, T *Ptr, const T &Pattern, size_t Count,
349348 const sycl::detail::code_location &CodeLoc =
350349 sycl::detail::code_location::current ()) {
351- submit (
352- Q, [&](handler &CGH) { fill<T>(CGH, Ptr, Pattern, Count); }, CodeLoc);
350+ submit (Q, [&](handler &CGH) { fill<T>(CGH, Ptr, Pattern, Count); }, CodeLoc);
353351}
354352
355353inline void prefetch (handler &CGH, void *Ptr, size_t NumBytes,
@@ -365,8 +363,7 @@ inline void prefetch(queue Q, void *Ptr, size_t NumBytes,
365363 prefetch_type type = prefetch_type::device,
366364 const sycl::detail::code_location &CodeLoc =
367365 sycl::detail::code_location::current ()) {
368- submit (
369- Q, [&](handler &CGH) { prefetch (CGH, Ptr, NumBytes, type); }, CodeLoc);
366+ submit (Q, [&](handler &CGH) { prefetch (CGH, Ptr, NumBytes, type); }, CodeLoc);
370367}
371368
372369inline void mem_advise (handler &CGH, void *Ptr, size_t NumBytes, int Advice) {
@@ -381,8 +378,7 @@ inline void barrier(handler &CGH) { CGH.ext_oneapi_barrier(); }
381378
382379inline void barrier (queue Q, const sycl::detail::code_location &CodeLoc =
383380 sycl::detail::code_location::current ()) {
384- submit (
385- Q, [&](handler &CGH) { barrier (CGH); }, CodeLoc);
381+ submit (Q, [&](handler &CGH) { barrier (CGH); }, CodeLoc);
386382}
387383
388384inline void partial_barrier (handler &CGH, const std::vector<event> &Events) {
@@ -392,8 +388,7 @@ inline void partial_barrier(handler &CGH, const std::vector<event> &Events) {
392388inline void partial_barrier (queue Q, const std::vector<event> &Events,
393389 const sycl::detail::code_location &CodeLoc =
394390 sycl::detail::code_location::current ()) {
395- submit (
396- Q, [&](handler &CGH) { partial_barrier (CGH, Events); }, CodeLoc);
391+ submit (Q, [&](handler &CGH) { partial_barrier (CGH, Events); }, CodeLoc);
397392}
398393
399394inline void execute_graph (queue Q, command_graph<graph_state::executable> &G,
0 commit comments