diff --git a/fft/src/KokkosFFT_Cuda_plans.hpp b/fft/src/KokkosFFT_Cuda_plans.hpp index 3431444f..cd15630f 100644 --- a/fft/src/KokkosFFT_Cuda_plans.hpp +++ b/fft/src/KokkosFFT_Cuda_plans.hpp @@ -155,9 +155,9 @@ auto _create(const ExecutionSpace& exec_space, std::unique_ptr& plan, auto [in_extents, out_extents, fft_extents, howmany] = KokkosFFT::Impl::get_extents(in, out, axes); int idist = std::accumulate(in_extents.begin(), in_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int odist = std::accumulate(out_extents.begin(), out_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int fft_size = std::accumulate(fft_extents.begin(), fft_extents.end(), 1, std::multiplies<>()); diff --git a/fft/src/KokkosFFT_HIP_plans.hpp b/fft/src/KokkosFFT_HIP_plans.hpp index 00fc2cf6..77fe3678 100644 --- a/fft/src/KokkosFFT_HIP_plans.hpp +++ b/fft/src/KokkosFFT_HIP_plans.hpp @@ -161,9 +161,9 @@ auto _create(const ExecutionSpace& exec_space, std::unique_ptr& plan, auto [in_extents, out_extents, fft_extents, howmany] = KokkosFFT::Impl::get_extents(in, out, axes); int idist = std::accumulate(in_extents.begin(), in_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int odist = std::accumulate(out_extents.begin(), out_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int fft_size = std::accumulate(fft_extents.begin(), fft_extents.end(), 1, std::multiplies<>()); diff --git a/fft/src/KokkosFFT_OpenMP_plans.hpp b/fft/src/KokkosFFT_OpenMP_plans.hpp index 346bee7c..dda4d2de 100644 --- a/fft/src/KokkosFFT_OpenMP_plans.hpp +++ b/fft/src/KokkosFFT_OpenMP_plans.hpp @@ -59,9 +59,9 @@ auto _create(const ExecutionSpace& exec_space, std::unique_ptr& plan, auto [in_extents, out_extents, fft_extents, howmany] = KokkosFFT::Impl::get_extents(in, out, axes); int idist = std::accumulate(in_extents.begin(), in_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int odist = std::accumulate(out_extents.begin(), out_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int fft_size = std::accumulate(fft_extents.begin(), fft_extents.end(), 1, std::multiplies<>()); diff --git a/fft/src/KokkosFFT_ROCM_plans.hpp b/fft/src/KokkosFFT_ROCM_plans.hpp index 9b3e1e87..df410914 100644 --- a/fft/src/KokkosFFT_ROCM_plans.hpp +++ b/fft/src/KokkosFFT_ROCM_plans.hpp @@ -107,9 +107,9 @@ auto _create(const ExecutionSpace& exec_space, std::unique_ptr& plan, auto [in_extents, out_extents, fft_extents, howmany] = KokkosFFT::Impl::get_extents(in, out, axes); int idist = std::accumulate(in_extents.begin(), in_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int odist = std::accumulate(out_extents.begin(), out_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int fft_size = std::accumulate(fft_extents.begin(), fft_extents.end(), 1, std::multiplies<>()); diff --git a/fft/src/KokkosFFT_SYCL_plans.hpp b/fft/src/KokkosFFT_SYCL_plans.hpp index 502415f9..86f4a07b 100644 --- a/fft/src/KokkosFFT_SYCL_plans.hpp +++ b/fft/src/KokkosFFT_SYCL_plans.hpp @@ -71,9 +71,9 @@ auto _create(const ExecutionSpace& exec_space, std::unique_ptr& plan, auto [in_extents, out_extents, fft_extents, howmany] = KokkosFFT::Impl::get_extents(in, out, axes); int idist = std::accumulate(in_extents.begin(), in_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int odist = std::accumulate(out_extents.begin(), out_extents.end(), 1, - std::multiplies<>()); + std::multiplies<>()); int fft_size = std::accumulate(fft_extents.begin(), fft_extents.end(), 1, std::multiplies<>());