Developer Reference for Intel® oneAPI Math Kernel Library for C
mkl_sparse_optimize
Analyzes matrix structure and performs optimizations using the hints provided in the handle.
Syntax
sparse_status_t mkl_sparse_optimize ( sparse_matrix_t A );
Include Files
mkl_spblas.h
Description
The mkl_sparse_optimize routine analyzes matrix structure and performs optimizations using the hints provided in the handle. Generally, specifying a higher number of expected operations allows for more aggressive and time consuming optimizations.
Product and Performance Information |
|---|
Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex . Notice revision #20201201 |
Input Parameters
A
Handle containing internal sparse matrix data.
Output Parameters
See Return Values for output status.
Return Values
Value indicating whether the operation was successful, and if not, why:
SPARSE_STATUS_SUCCESS |
The operation was successful or nothing was to be done. |
SPARSE_STATUS_NOT_INITIALIZED |
The routine encountered an empty handle or matrix array. |
SPARSE_STATUS_ALLOC_FAILED |
Internal memory allocation failed. |
SPARSE_STATUS_INVALID_VALUE |
The input parameters contain an invalid value. |
SPARSE_STATUS_EXECUTION_FAILED |
Execution failed. |
SPARSE_STATUS_INTERNAL_ERROR |
An error in algorithm implementation occurred. |