! @brief Retrieve the length of each dimension of the FFT * @details User should pass a reference to a size_t array, which will be set to the * length of each discrete dimension of the FFT * @param[in] plHandle Handle to a plan previously created * @param[in] dim The dimension of the length parameters; describes how many elements are in the array * @param[out] clLengths An array of
| 309 | * @return Enum describing error condition; superset of OpenCL error codes |
| 310 | */ |
| 311 | __inline clAmdFftStatus clAmdFftGetPlanLength( const clAmdFftPlanHandle plHandle, const clAmdFftDim dim, size_t* clLengths ) |
| 312 | { |
| 313 | return clfftGetPlanLength( plHandle, dim, clLengths ); |
| 314 | } |
| 315 | |
| 316 | /*! @brief Set the length of each dimension of the FFT |
| 317 | * @details Set the plan property which will be the length of each discrete dimension of the FFT |
nothing calls this directly
no test coverage detected