Skip to content

Commit

Permalink
Merge pull request #1726 from IntelPython/remove-unnecessary-template…
Browse files Browse the repository at this point in the history
…d-method

Remove 'template' from call to `get_kernel` method of kernel bundle in sorting
  • Loading branch information
ndgrigorian authored Jul 10, 2024
2 parents 1cd4fe3 + a8769c6 commit 734fd8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpctl/tensor/libtensor/include/kernels/sorting/sort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ sort_over_work_group_contig_impl(sycl::queue &q,
auto kb = sycl::get_kernel_bundle<sycl::bundle_state::executable>(
ctx, {dev}, {kernel_id});

auto krn = kb.template get_kernel(kernel_id);
auto krn = kb.get_kernel(kernel_id);

const std::uint32_t max_sg_size = krn.template get_info<
sycl::info::kernel_device_specific::max_sub_group_size>(dev);
Expand Down

0 comments on commit 734fd8b

Please sign in to comment.