mkl_cspblas_?csrgemv
mkl_cspblas_?csrgemv
Computes matrix - vector product of a sparse general matrix stored in the CSR format (3-array variation) with zero-based indexing (deprecated).
Syntax
void
mkl_cspblas_scsrgemv
(
const
char
*transa
,
const
MKL_INT
*m
,
const
float
*a
,
const
MKL_INT
*ia
,
const
MKL_INT
*ja
,
const
float
*x
,
float
*y
);
void
mkl_cspblas_dcsrgemv
(
const
char
*transa
,
const
MKL_INT
*m
,
const
double
*a
,
const
MKL_INT
*ia
,
const
MKL_INT
*ja
,
const
double
*x
,
double
*y
);
void
mkl_cspblas_ccsrgemv
(
const
char
*transa
,
const
MKL_INT
*m
,
const
MKL_Complex8
*a
,
const
MKL_INT
*ia
,
const
MKL_INT
*ja
,
const
MKL_Complex8
*x
,
MKL_Complex8
*y
);
void
mkl_cspblas_zcsrgemv
(
const
char
*transa
,
const
MKL_INT
*m
,
const
MKL_Complex16
*a
,
const
MKL_INT
*ia
,
const
MKL_INT
*ja
,
const
MKL_Complex16
*x
,
MKL_Complex16
*y
);
Include Files
- mkl.h
Description
This routine is deprecated. Use mkl_sparse_?_mvfrom the Inspector-executor Sparse BLAS interface instead.
Intel® oneAPI Math Kernel Library
The
mkl_cspblas_?csrgemv
routine performs a matrix-vector operation defined as y := A*x
or
y := AT*x,
where:
x
and y
are vectors, A
is an m
-by-m
sparse square matrix in the CSR format (3-array variation) with zero-based indexing, A
T
is the transpose of A
.This routine supports only zero-based indexing of the input arrays.
Input Parameters
- transa
- Specifies the operation.Ifortransa='N''n', then the matrix-vector product is computed asy:=A*xIfortransa='T''t'or'C'or'c', then the matrix-vector product is computed as,y:=AT*x
- m
- Number of rows of the matrixA.
- a
- Array containing non-zero elements of the matrixA. Its length is equal to the number of non-zero elements in the matrixA. Refer tovaluesarray description in Sparse Matrix Storage Formats for more details.
- ia
- Array of length, containing indices of elements in the arraym+ 1a, such thatis the index in the arrayia[I]aof the first non-zero element from the rowI. The value of the last elementis equal to the number of non-zeros. Refer toia[m]rowIndexarray description in Sparse Matrix Storage Formats for more details.
- ja
- Array containing the column indices for each non-zero element of the matrixA.Its length is equal to the length of the arraya. Refer tocolumnsarray description in Sparse Matrix Storage Formats for more details.
- x
- Array, size ism.One entry, the arrayxmust contain the vectorx.
Output Parameters
- y
- Array, size at leastm.On exit, the arrayymust contain the vectory.