Intel® oneAPI Math Kernel Library Developer Reference - Fortran
Returns the Intel® oneAPI Math Kernel Library version in a character string.
call mkl_get_version_string( buf )
Name |
Type |
Description |
---|---|---|
buf |
CHARACTER*198 |
Source string |
The function returns a string that contains the Intel® oneAPI Math Kernel Library version.
For usage details, see the code example below:
program test_mkl_get_version_string
character*198 buf
call mkl_get_version_string(buf)
write(*,'(a)') buf
end