Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
FMarno committed Feb 6, 2024
1 parent 3f12710 commit fd9d7cc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/portfft/committed_descriptor_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,8 @@ class committed_descriptor_impl {
PORTFFT_LOG_TRACE("Dispatching the kernel for the last dimension");
sycl::event previous_event =
dispatch_kernel_1d(in, out, in_imag, out_imag, dependencies, params.number_of_transforms * outer_size,
input_stride_0, output_stride_0, input_distance_0, output_distance_0,
input_offset, output_offset, dimensions.back(), compute_direction);
input_stride_0, output_stride_0, input_distance_0, output_distance_0, input_offset,
output_offset, dimensions.back(), compute_direction);
if (n_dimensions == 1) {
return previous_event;
}
Expand Down Expand Up @@ -1089,7 +1089,8 @@ class committed_descriptor_impl {
}
}

// UNPACKED is also being dispatched as PACKED, but kernels that support packed don't use the layout template parameter.
// UNPACKED is also being dispatched as PACKED, but kernels that support packed don't use the layout template
// parameter.
if (!input_batch_interleaved && !output_batch_interleaved) {
return run_kernel<detail::layout::PACKED, detail::layout::PACKED, SubgroupSize>(
in, out, in_imag, out_imag, dependencies, n_transforms, input_offset, output_offset, dimension_data,
Expand Down

0 comments on commit fd9d7cc

Please sign in to comment.