Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

sparse blas matrix-matrix product

lanzors
Beginner
499 Views
Hi,

We are interested in a commercail product with the sparse blas 2 and 3 functionnalities.
By reading the doc and I was told that the sprase blas 2 and 3 funcions are only available in the double precision case. I want to know whether and when can we have a single precision version.

Can anyone tell me if there are some benchmark datas of the MKL sparse functions. I've searched in internet and nothing interested found yet.

Thx for any informations.
0 Kudos
1 Solution
Gennady_F_Intel
Moderator
499 Views

1. The latest MKL v.10.1 is available right now and the functionality you are looking for is available

as for sparse blas routine 2 and 3.

You can find these declarations in mkl_spblas.fi mkl_spblas.h.

For example:

mkl_scsrmv&transa, &m, &k, α, matdescra, val, indx, pntrb, pntre, x, β, y);

mkl_ccsrmv(&transa, &m, &k, α, matdescra, val, indx, pntrb, pntre, x, β, y);

2. There are no some benchmark data available right now.

--Gennady

View solution in original post

0 Kudos
1 Reply
Gennady_F_Intel
Moderator
500 Views

1. The latest MKL v.10.1 is available right now and the functionality you are looking for is available

as for sparse blas routine 2 and 3.

You can find these declarations in mkl_spblas.fi mkl_spblas.h.

For example:

mkl_scsrmv&transa, &m, &k, α, matdescra, val, indx, pntrb, pntre, x, β, y);

mkl_ccsrmv(&transa, &m, &k, α, matdescra, val, indx, pntrb, pntre, x, β, y);

2. There are no some benchmark data available right now.

--Gennady

0 Kudos
Reply