You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/nbl/builtin/hlsl/fft/common.hlsl
+12-14Lines changed: 12 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -17,22 +17,21 @@ namespace fft
17
17
18
18
template <uint16_t N NBL_FUNC_REQUIRES(N > 0 && N <= 4)
19
19
/**
20
-
* @brief Returns the size of the full FFT computed, in terms of number of complex elements.
20
+
* @brief Returns the size of the full FFT computed, in terms of number of complex elements. If the signal is real, you MUST provide a valid value for `firstAxis`
21
21
*
22
22
* @tparam N Number of dimensions of the signal to perform FFT on.
23
23
*
24
24
* @param [in] dimensions Size of the signal.
25
-
* @param [in] realFFT Indicates whether the signal is real. False by default.
26
-
* @param [in] firstAxis Indicates which axis the FFT is performed on first. Only relevant for real-valued signals. Must be less than N. 0 by default.
25
+
* @param [in] firstAxis Indicates which axis the FFT is performed on first. Only relevant for real-valued signals, in which case it must be less than N. N by default.
0 commit comments