* @brief Get the clAmdBlas library version info. * * @param[out] major Location to store library's major version. * @param[out] minor Location to store library's minor version. * @param[out] patch Location to store library's patch version. * * @returns always \b clAmdBlasSuccess. * * @ingroup VERSION */
| 172 | * @ingroup VERSION |
| 173 | */ |
| 174 | __inline clAmdBlasStatus |
| 175 | clAmdBlasGetVersion( cl_uint* major, cl_uint* minor, cl_uint* patch ) |
| 176 | { |
| 177 | return clblasGetVersion( major, minor, patch ); |
| 178 | } |
| 179 | |
| 180 | /*@}*/ |
| 181 |
nothing calls this directly
no test coverage detected