Visible to Intel only — GUID: GUID-FB89D011-B5DB-40F0-80C7-77D09117B6D3
Visible to Intel only — GUID: GUID-FB89D011-B5DB-40F0-80C7-77D09117B6D3
DftiGetValue
Gets the configuration value of one particular configuration parameter.
status = DftiGetValue(desc_handle, config_param, &config_val);
- mkl.h
Name |
Type |
Description |
---|---|---|
desc_handle |
DFTI_DESCRIPTOR_HANDLE |
FFT descriptor. |
config_param |
enum |
Configuration parameter. See Table "Configuration Parameters" for allowable values of config_param. |
Name |
Type |
Description |
---|---|---|
config_val |
Depends on the configuration parameter. |
Configuration value. |
status |
MKL_LONG |
Function completion status. |
This function gets the configuration value of one particular configuration parameter. Each configuration parameter is a named constant, and the configuration value must have the corresponding type, which can be a named constant or a native type. For available configuration parameters and the corresponding configuration values, see:
- DFTI_PRECISION
- DFTI_FORWARD_DOMAIN
- DFTI_DIMENSION, DFTI_LENGTH
- DFTI_PLACEMENT
- DFTI_FORWARD_SCALE, DFTI_BACKWARD_SCALE
- DFTI_THREAD_LIMIT
- DFTI_INPUT_STRIDES, DFTI_OUTPUT_STRIDES
- DFTI_NUMBER_OF_TRANSFORMS
- DFTI_INPUT_DISTANCE, DFTI_OUTPUT_DISTANCE
- DFTI_COMPLEX_STORAGE, DFTI_REAL_STORAGE, DFTI_CONJUGATE_EVEN_STORAGE
- DFTI_PACKED_FORMAT
- DFTI_WORKSPACE
- DFTI_COMMIT_STATUS
- DFTI_ORDERING
- DFTI_DESTROY_INPUT
The function returns zero when it completes successfully. See Status Checking Functions for more information on the returned status.
MKL_LONG DftiGetValue( DFTI_DESCRIPTOR_HANDLE, DFTI_CONFIG_PARAM , ... );