@@ -225,11 +225,11 @@ std::pair<sycl::event, sycl::event>
225225 int nd = src_nd;
226226
227227 // nd, simplified_* and *_offset are modified by reference
228- simplify_iteration_space (
229- nd, src_shape_vec. data (), src_strides_vec, dst.get_strides_vector (),
230- // output
231- simplified_shape, simplified_src_strides, simplified_dst_strides ,
232- src_offset, dst_offset);
228+ simplify_iteration_space (nd, src_shape_vec. data (), src_strides_vec,
229+ dst.get_strides_vector (),
230+ // output
231+ simplified_shape, simplified_src_strides,
232+ simplified_dst_strides, src_offset, dst_offset);
233233
234234 if (!((0 == src_offset) && (0 == dst_offset))) {
235235 throw std::runtime_error (
@@ -359,11 +359,11 @@ std::pair<sycl::event, sycl::event>
359359 int nd = src_nd;
360360
361361 // nd, simplified_* and *_offset are modified by reference
362- simplify_iteration_space (
363- nd, src_shape_vec. data (), src_strides_vec, dst.get_strides_vector (),
364- // output
365- simplified_shape, simplified_src_strides, simplified_dst_strides ,
366- src_offset, dst_offset);
362+ simplify_iteration_space (nd, src_shape_vec. data (), src_strides_vec,
363+ dst.get_strides_vector (),
364+ // output
365+ simplified_shape, simplified_src_strides,
366+ simplified_dst_strides, src_offset, dst_offset);
367367
368368 if (!((0 == src_offset) && (0 == dst_offset))) {
369369 throw std::runtime_error (
@@ -521,12 +521,11 @@ std::pair<sycl::event, sycl::event>
521521 int nd = static_cast <int >(batch_shape_vec.size ());
522522
523523 // nd, simplified_* and *_offset are modified by reference
524- simplify_iteration_space (
525- nd, batch_shape_vec.data (), src_batch_strides_vec,
526- dst_batch_strides_vec,
527- // output
528- simplified_shape, simplified_src_strides, simplified_dst_strides,
529- src_offset, dst_offset);
524+ simplify_iteration_space (nd, batch_shape_vec.data (), src_batch_strides_vec,
525+ dst_batch_strides_vec,
526+ // output
527+ simplified_shape, simplified_src_strides,
528+ simplified_dst_strides, src_offset, dst_offset);
530529
531530 if (!((0 == src_offset) && (0 == dst_offset))) {
532531 throw std::runtime_error (
@@ -714,12 +713,11 @@ std::pair<sycl::event, sycl::event>
714713 int nd = static_cast <int >(batch_shape_vec.size ());
715714
716715 // nd, simplified_* and *_offset are modified by reference
717- simplify_iteration_space (
718- nd, batch_shape_vec.data (), src_batch_strides_vec,
719- dst_batch_strides_vec,
720- // output
721- simplified_shape, simplified_src_strides, simplified_dst_strides,
722- src_offset, dst_offset);
716+ simplify_iteration_space (nd, batch_shape_vec.data (), src_batch_strides_vec,
717+ dst_batch_strides_vec,
718+ // output
719+ simplified_shape, simplified_src_strides,
720+ simplified_dst_strides, src_offset, dst_offset);
723721
724722 if (!((0 == src_offset) && (0 == dst_offset))) {
725723 throw std::runtime_error (
0 commit comments