Visible to Intel only — GUID: GUID-640CB61B-82AE-4E67-9A13-F509F3EF61C0
Visible to Intel only — GUID: GUID-640CB61B-82AE-4E67-9A13-F509F3EF61C0
dss_statistics
Returns statistics about various phases of the solving process.
MKL_INT dss_statistics(_MKL_DSS_HANDLE_t *handle, MKL_INT const *opt, _CHARACTER_STR_t const *statArr, _DOUBLE_PRECISION_t *retValues)
- mkl.h
The dss_statistics routine returns statistics about various phases of the solving process. This routine gathers the following statistics:
time taken to do reordering,
time taken to do factorization,
duration of problem solving,
determinant of the symmetric indefinite input matrix,
inertia of the symmetric indefinite input matrix,
number of floating point operations taken during factorization,
total peak memory needed during the analysis and symbolic factorization,
permanent memory needed from the analysis and symbolic factorization,
memory consumption for the factorization and solve phases.
Statistics are returned in accordance with the input string specified by the parameter statArr. The value of the statistics is returned in double precision in a return array, which you must allocate beforehand.
For multiple statistics, multiple string constants separated by commas can be used as input. Return values are put into the return array in the same order as specified in the input string.
Statistics can only be requested at the appropriate stages of the solving process. For example, requesting FactorTime before a matrix is factored leads to an error.
The following table shows the point at which each individual statistics item can be requested:
Type of Statistics | When to Call |
---|---|
ReorderTime | After dss_reorder is completed successfully. |
FactorTime | After dss_factor_real or dss_factor_complex is completed successfully. |
SolveTime | After dss_solve_real or dss_solve_complex is completed successfully. |
Determinant | After dss_factor_real or dss_factor_complex is completed successfully. |
Inertia | After dss_factor_real is completed successfully and the matrix is real, symmetric, and indefinite. |
Flops | After dss_factor_real or dss_factor_complex is completed successfully. |
Peakmem | After dss_reorder is completed successfully. |
Factormem | After dss_reorder is completed successfully. |
Solvemem | After dss_factor_real or dss_factor_complex is completed successfully. |
handle |
Pointer to the data structure storing internal DSS results (MKL_DSS_HANDLE). |
opt |
Parameter to pass the DSS options. |
statArr |
Input string that defines the type of the returned statistics. The parameter can include one or more of the following string constants (case of the input string has no effect):
|
retValues |
Value of the statistics returned. |
The example below illustrates the use of the dss_statistics routine.
To find the above values, call dss_statistics(handle, opt, statArr, retValue), where staArr is "ReorderTime,Inertia"
In this example, retValue has the following values:
- retValue[0]
- Time to reorder.
- retValue[1]
- Positive Eigenvalues.
- retValue[2]
- Negative Eigenvalues.
- retValue[3]
- Zero Eigenvalues.
MKL_DSS_SUCCESS
MKL_DSS_INVALID_OPTION
MKL_DSS_STATISTICS_INVALID_MATRIX
MKL_DSS_STATISTICS_INVALID_STATE
MKL_DSS_STATISTICS_INVALID_STRING
MKL_DSS_MSG_LVL_ERR
MKL_DSS_TERM_LVL_ERR