Skip to content

Commit

Permalink
Fix simdpar/par_simd naming
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Aug 10, 2021
1 parent ba7153c commit 4331aeb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ namespace hpx { namespace parallel { namespace util {
///////////////////////////////////////////////////////////////////////////
template <typename Begin, typename End, typename F>
HPX_HOST_DEVICE HPX_FORCEINLINE Begin tag_dispatch(
hpx::parallel::util::loop_t, hpx::execution::simdpar_policy,
hpx::parallel::util::loop_t, hpx::execution::par_simd_policy,
Begin begin, End end, F&& f)
{
return detail::datapar_loop<Begin>::call(
Expand All @@ -435,7 +435,7 @@ namespace hpx { namespace parallel { namespace util {

template <typename Begin, typename End, typename F>
HPX_HOST_DEVICE HPX_FORCEINLINE Begin tag_dispatch(
hpx::parallel::util::loop_t, hpx::execution::simdpar_task_policy,
hpx::parallel::util::loop_t, hpx::execution::par_simd_task_policy,
Begin begin, End end, F&& f)
{
return detail::datapar_loop<Begin>::call(
Expand Down

0 comments on commit 4331aeb

Please sign in to comment.