From e929a4c6d06c0b1818207c1e972f4ae50922965d Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Mon, 25 Mar 2024 17:37:54 +0900 Subject: [PATCH] fix argument --- fft/src/KokkosFFT_Transform.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fft/src/KokkosFFT_Transform.hpp b/fft/src/KokkosFFT_Transform.hpp index 2f3922dc..66953be8 100644 --- a/fft/src/KokkosFFT_Transform.hpp +++ b/fft/src/KokkosFFT_Transform.hpp @@ -1975,7 +1975,7 @@ void irfftn(const ExecutionSpace& exec_space, const InViewType& in, static_assert(std::is_floating_point::value, "irfftn: OutViewType must be real"); - ifftn(exec_space, in, out, norm, _s); + ifftn(exec_space, in, out, norm, s); } /// \brief Inverse of rfftn