Developer Reference for Intel® oneAPI Math Kernel Library for Fortran

ID 766686
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

mkl_get_version_string

Returns the Intel® oneAPI Math Kernel Library version in a character string.

Syntax

call mkl_get_version_string( buf )

Fortran Include Files/Modules
  • Include file: mkl.fi
  • Module (compiled): mkl_service.mod
  • Module (source): mkl_service.f90
Output Parameters

Name

Type

Description

buf

CHARACTER*198

Source string

Description

The function returns a string that contains the Intel® oneAPI Math Kernel Library version.

For usage details, see the code example below:

Example
program test_mkl_get_version_string

character*198  buf

call mkl_get_version_string(buf)
write(*,'(a)') buf

end