Intel® oneAPI Math Kernel Library Developer Reference - C
Solving step of the SPARSE QR solver.
sparse_status_t mkl_sparse_d_qr_solve ( sparse_operation_t operation, sparse_matrix_t A, double *alt_values, sparse_layout_t layout, MKL_INT columns, double *x, MKL_INT ldx, const double *b, MKL_INT ldb );
sparse_status_t mkl_sparse_s_qr_solve ( sparse_operation_t operation, sparse_matrix_t A, float *alt_values, sparse_layout_t layout, MKL_INT columns, float *x, MKL_INT ldx, const float *b, MKL_INT ldb );
The mkl_sparse_?_qr_solve routine computes the solution of sparse systems of linear equations A*x = b.
Currently, mkl_sparse_?_qr_solve supports only CSR format for the input matrix, non-transpose operation, and single right-hand side.
Alternative values are not supported and must be set to NULL.
Specifies the operation to perform.
Handle containing a sparse matrix in an internal data structure.
Reserved for future use.
Describes the storage scheme for the dense matrix:
SPARSE_LAYOUT_COLUMN_MAJOR | Storage of elements uses column-major layout. |
SPARSE_LAYOUT_ROW_MAJOR | Storage of elements uses row-major layout. |
Array with a size of at least rows*cols:
layout = SPARSE_LAYOUT_COLUMN_MAJOR | layout = SPARSE_LAYOUT_ROW_MAJOR | |
rows (number of rows in x) | ldx | Number of columns in A |
cols (number of columns in x) | columns | ldx |
Number of columns in matrix b.
Specifies the leading dimension of matrix x.
Array with a size of at least rows*cols:
layout = SPARSE_LAYOUT_COLUMN_MAJOR | layout = SPARSE_LAYOUT_ROW_MAJOR | |
rows (number of rows in b) | ldb | Number of columns in A |
cols (number of columns in b) | columns | ldb |
Specifies the leading dimension of matrix b.
Contains the solution of system A*x = b.