! @brief Query the FFT library for version information * @details Return the major, minor and patch version numbers associated with this FFT library * @param[out] major Major functionality change * @param[out] minor Minor functionality change * @param[out] patch Bug fixes, documentation changes, no new features introduced * @return Enum describing error condition; superset of OpenCL
| 118 | * @return Enum describing error condition; superset of OpenCL error codes |
| 119 | */ |
| 120 | __inline clAmdFftStatus clAmdFftGetVersion( cl_uint* major, cl_uint* minor, cl_uint* patch ) |
| 121 | { |
| 122 | return clfftGetVersion( major, minor, patch ); |
| 123 | } |
| 124 | |
| 125 | /*! @brief Create a plan object initialized entirely with default values. |
| 126 | * @details A plan is a repository of state for calculating FFT's. Allows the runtime to pre-calculate kernels, programs |
nothing calls this directly
no test coverage detected