Skip to content

Commit

Permalink
fix: in_inplace is unsed for C2C
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Nov 4, 2024
1 parent cd8e05e commit e13b3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/KokkosFFT_Extents.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace Impl {
template <typename InViewType, typename OutViewType, std::size_t DIM = 1>
auto get_extents(const InViewType& in, const OutViewType& out,
axis_type<DIM> axes, shape_type<DIM> shape = {},
bool is_inplace = false) {
[[maybe_unused]] bool is_inplace = false) {
using in_value_type = typename InViewType::non_const_value_type;
using out_value_type = typename OutViewType::non_const_value_type;
using array_layout_type = typename InViewType::array_layout;
Expand Down

0 comments on commit e13b3a8

Please sign in to comment.