MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / clAmdFftGetVersion

Function clAmdFftGetVersion

src/include/clAmdFft.h:120–123  ·  view source on GitHub ↗

! @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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

clfftGetVersionFunction · 0.85

Tested by

no test coverage detected