diff --git a/src/portfft/common/transfers.hpp b/src/portfft/common/transfers.hpp index 0efdeda2..c5cc6bd6 100644 --- a/src/portfft/common/transfers.hpp +++ b/src/portfft/common/transfers.hpp @@ -699,9 +699,9 @@ PORTFFT_INLINE void local_private_strided_copy(PtrView& ptr_view, T* priv, * @param ptr_view View of the local / global memory containing the real component of the data * @param ptr_imag_view View of the local / global memory containing the imaginary component of the data * @param priv Pointer to the private memory array - * @param ptr_view_strides_offsets An array of 2 arrays containing PtrViewNDim elements of IdxType, containing strides + * @param ptr_view_strides_offsets Struct containing strides * and offsets for the strided view to be constructed for the local / global memory containing the real part of the data - * @param ptr_imag_view_strides_offsets An array of 2 arrays containing PtrViewNDim elements of IdxType, containing + * @param ptr_imag_view_strides_offsets Struct containing * strides and offsets for the strided view to be constructed for the local / global memory containing the imaginary * part of the data * @param num_elements_to_copy Number of elements to copy diff --git a/src/portfft/defines.hpp b/src/portfft/defines.hpp index 15f087b1..5397b248 100644 --- a/src/portfft/defines.hpp +++ b/src/portfft/defines.hpp @@ -50,7 +50,7 @@ using Idx = std::int32_t; using IdxGlobal = std::int64_t; /** - * An array of 2 arrays containing N elements of Type, containing strides (s) and offset (o) for a view + * Struct containing the strides and offsets for a view * @tparam Type Type of elements * @tparam N Number of elements in each of the two arrays */