Solves a system of linear equations for a sparse matrix in the coordinate format.
Fortran:
call mkl_scoosv(transa, m, k, alpha, matdescra, val, rowind, colind, nnz, x, y)
call mkl_dcoosv(transa, m, k, alpha, matdescra, val, rowind, colind, nnz, x, y)
call mkl_ccoosv(transa, m, k, alpha, matdescra, val, rowind, colind, nnz, x, y)
call mkl_zcoosv(transa, m, k, alpha, matdescra, val, rowind, colind, nnz, x, y)
C:
mkl_scoosv(&transa, &m, &k, &alpha, matdescra, val, rowind, colind, &nnz, x, y);
mkl_dcoosv(&transa, &m, &k, &alpha, matdescra, val, rowind, colind, &nnz, x, y);
mkl_ccoosv(&transa, &m, &k, &alpha, matdescra, val, rowind, colind, &nnz, x, y);
mkl_zcoosv(&transa, &m, &k, &alpha, matdescra, val, rowind, colind, &nnz, x, y);
The FORTRAN 77 interfaces are specified in the mkl_spblas.fi include file and the C interfaces are specified in the mkl_spblas.h include file.
The mkl_?coosv routine solves a system of linear equations with matrix-vector operations for a sparse matrix in the coordinate format: y := alpha*inv(A)*x
or y := alpha*inv(A')*x,
where:
alpha is scalar, x and y are vectors, A is a sparse upper or lower triangular matrix with unit or non-unit main diagonal, A' is the transpose of A.
This routine supports a coordinate format both with one-based indexing and zero-based indexing.
Parameter descriptions are common for all implemented interfaces with the exception of data types that refer here to the FORTRAN 77 standard types. Data types specific to the different interfaces are described in the section "Interfaces" below.
CHARACTER*1. Specifies the system of linear equations.
If transa = 'N' or 'n', then y := alpha*inv(A)*x
If transa = 'T' or 't' or 'C' or 'c', then y := alpha*inv(A')* x,
INTEGER. Number of rows of the matrix A.
REAL for mkl_scoosv.
DOUBLE PRECISION for mkl_dcoosv.
COMPLEX for mkl_ccoosv.
DOUBLE COMPLEX for mkl_zcoosv.
Specifies the scalar alpha.
CHARACTER. Array of six elements, specifies properties of the matrix used for operation. Only first four array elements are used, their possible values are given in Table “Possible Values of the Parameter matdescra (descra)”. Possible combinations of element values of this parameter are given in Table “Possible Combinations of Element Values of the Parameter matdescra”.
REAL for mkl_scoosv.
DOUBLE PRECISION for mkl_dcoosv.
COMPLEX for mkl_ccoosv.
DOUBLE COMPLEX for mkl_zcoosv.
Array of length nnz, contains non-zero elements of the matrix A in the arbitrary order.
Refer to values array description in Coordinate Format for more details.
INTEGER. Array of length nnz, contains the row indices for each non-zero element of the matrix A.
Refer to rows array description in Coordinate Format for more details.
INTEGER. Array of length nnz, contains the column indices for each non-zero element of the matrix A. Refer to columns array description in Coordinate Format for more details.
INTEGER. Specifies the number of non-zero element of the matrix A.
Refer to nnz description in Coordinate Format for more details.
REAL for mkl_scoosv.
DOUBLE PRECISION for mkl_dcoosv.
COMPLEX for mkl_ccoosv.
DOUBLE COMPLEX for mkl_zcoosv.
Array, DIMENSION at least m.
On entry, the array x must contain the vector x. The elements are accessed with unit increment.
REAL for mkl_scoosv.
DOUBLE PRECISION for mkl_dcoosv.
COMPLEX for mkl_ccoosv.
DOUBLE COMPLEX for mkl_zcoosv.
Array, DIMENSION at least m.
On entry, the array y must contain the vector y. The elements are accessed with unit increment.
Contains solution vector x.
SUBROUTINE mkl_scoosv(transa, m, alpha, matdescra, val, rowind, colind, nnz, x, y)
CHARACTER*1 transa
CHARACTER matdescra(*)
INTEGER m, nnz
INTEGER rowind(*), colind(*)
REAL alpha
REAL val(*)
REAL x(*), y(*)
SUBROUTINE mkl_dcoosv(transa, m, alpha, matdescra, val, rowind, colind, nnz, x, y)
CHARACTER*1 transa
CHARACTER matdescra(*)
INTEGER m, nnz
INTEGER rowind(*), colind(*)
DOUBLE PRECISION alpha
DOUBLE PRECISION val(*)
DOUBLE PRECISION x(*), y(*)
SUBROUTINE mkl_ccoosv(transa, m, alpha, matdescra, val, rowind, colind, nnz, x, y)
CHARACTER*1 transa
CHARACTER matdescra(*)
INTEGER m, nnz
INTEGER rowind(*), colind(*)
COMPLEX alpha
COMPLEX val(*)
COMPLEX x(*), y(*)
SUBROUTINE mkl_zcoosv(transa, m, alpha, matdescra, val, rowind, colind, nnz, x, y)
CHARACTER*1 transa
CHARACTER matdescra(*)
INTEGER m, nnz
INTEGER rowind(*), colind(*)
DOUBLE COMPLEX alpha
DOUBLE COMPLEX val(*)
DOUBLE COMPLEX x(*), y(*)
void mkl_scoosv(char *transa, int *m, float *alpha, char *matdescra,
float *val, int *rowind, int *colind, int *nnz, float *x, float *y);
void mkl_dcoosv(char *transa, int *m, double *alpha, char *matdescra,
double *val, int *rowind, int *colind, int *nnz, double *x, double *y);
void mkl_ccoosv(char *transa, int *m, MKL_Complex8 *alpha, char *matdescra,
MKL_Complex8 *val, int *rowind, int *colind, int *nnz, MKL_Complex8 *x, MKL_Complex8 *y);
void mkl_zcoosv(char *transa, int *m, MKL_Complex16 *alpha, char *matdescra,
MKL_Complex16 *val, int *rowind, int *colind, int *nnz, MKL_Complex16 *x, MKL_Complex16 *y);
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.