|
template<typename ValueType > |
void | paralution::spmv_csr (const int mic_dev, const int *row, const int *col, const ValueType *val, const int nrow, const ValueType *in, ValueType *out) |
|
template<typename ValueType > |
void | paralution::spmv_add_csr (const int mic_dev, const int *row, const int *col, const ValueType *val, const int nrow, const ValueType scalar, const ValueType *in, ValueType *out) |
|
template void | paralution::spmv_csr< double > (const int mic_dev, const int *row, const int *col, const double *val, const int nrow, const double *in, double *out) |
|
template void | paralution::spmv_csr< float > (const int mic_dev, const int *row, const int *col, const float *val, const int nrow, const float *in, float *out) |
|
template void | paralution::spmv_csr< int > (const int mic_dev, const int *row, const int *col, const int *val, const int nrow, const int *in, int *out) |
|
template void | paralution::spmv_add_csr< double > (const int mic_dev, const int *row, const int *col, const double *val, const int nrow, const double scalar, const double *in, double *out) |
|
template void | paralution::spmv_add_csr< float > (const int mic_dev, const int *row, const int *col, const float *val, const int nrow, const float scalar, const float *in, float *out) |
|
template void | paralution::spmv_add_csr< int > (const int mic_dev, const int *row, const int *col, const int *val, const int nrow, const int scalar, const int *in, int *out) |
|