Developer Reference for Intel® oneAPI Math Kernel Library for C

ID 766684
Date 11/07/2023
Public

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

Document Table of Contents

DftiErrorMessage

Generates an error message.

Syntax

error_message = DftiErrorMessage(status);

Include Files

  • mkl.h

Input Parameters

Name

Type

Description

status

MKL_LONG

Completion status of a function.

Output Parameters

Name

Type

Description

error_message

Array of char

The character string with the error message.

Description

The error message function generates an error message character string. The function returns a pointer to a constant character string, that is, a character array with terminating '\0' character, and you do not need to free this pointer.

Example Using Status Checking Function shows how this function can be used.

Prototype

 
char *DftiErrorMessage( MKL_LONG );