Developer Reference for Intel® oneAPI Math Kernel Library for Fortran
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-BDF77516-08C9-44DC-9533-8C608DF9EDD9
Visible to Intel only — GUID: GUID-BDF77516-08C9-44DC-9533-8C608DF9EDD9
DftiErrorMessage
Generates an error message.
error_message = DftiErrorMessage( status )
- mkl_dfti.f90
Name |
Type |
Description |
---|---|---|
status |
INTEGER |
Completion status of a function. |
Name |
Type |
Description |
---|---|---|
error_message |
CHARACTER(LEN=DFTI_MAX_MESSAGE_LENGTH) |
The character string with the error message. |
The error message function generates an error message character string. In Fortran, use a character string of length DFTI_MAX_MESSAGE_LENGTH as a target for the error message.
Example Using Status Checking Function shows how this function can be used.
INTERFACE DftiErrorMessage //Note that the body provided here is to illustrate the different //argument list and types of dummy arguments. The interface //does not guarantee what the actual function names are. //Users can only rely on the function name following the //keyword INTERFACE FUNCTION some_actual_function_9( Status ) CHARACTER(LEN=DFTI_MAX_MESSAGE_LENGTH) some_actual_function_9( Status ) INTEGER, INTENT(IN) :: Status END FUNCTION some_actual_function_9 END INTERFACE DftiErrorMessage