Skip to content

Commit

Permalink
fix argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Mar 25, 2024
1 parent ef451fa commit e929a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fft/src/KokkosFFT_Transform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1975,7 +1975,7 @@ void irfftn(const ExecutionSpace& exec_space, const InViewType& in,
static_assert(std::is_floating_point<out_value_type>::value,
"irfftn: OutViewType must be real");

ifftn(exec_space, in, out, norm, _s);
ifftn(exec_space, in, out, norm, s);
}

/// \brief Inverse of rfftn
Expand Down

0 comments on commit e929a4c

Please sign in to comment.