|
template<class I0 , class I1 > |
void | csr2coo_inline (const I0 &csr, I1 &coo) |
|
template<class I > |
I | csr2coo (const I &csr) |
|
template<class I0 , class I1 > |
void | coo2csr_inline (const I0 &coo, I1 &csr) |
|
template<class I > |
I | coo2csr (unsigned num_rows, const I &coo) |
|
template<class I , class V > |
void | spgemm_cpu_kernel (size_t B_num_rows, size_t B_num_cols, size_t C_num_cols, const I &B_pos, const I &B_idx, const V &B_val, const I &C_pos, const I &C_idx, const V &C_val, I &A_pos, I &A_idx, V &A_val) |
|
template<class I , class V > |
void | spadd_cpu_kernel (size_t B_num_rows, size_t B_num_cols, const I &B_pos, const I &B_idx, const V &B_val, const I &C_pos, const I &C_idx, const V &C_val, I &A_pos, I &A_idx, V &A_val) |
|
template<class I , class V , class value_type , class C1 , class C2 > |
void | spmv_cpu_kernel (CSRCache_cpu &cache, size_t A_num_rows, size_t A_num_cols, size_t A_nnz, const I *RESTRICT A_pos, const I *RESTRICT A_idx, const V *RESTRICT A_val, value_type alpha, value_type beta, const C1 *RESTRICT x_ptr, C2 *RESTRICT y_ptr) |
|
template<class value_type > |
cudaDataType_t | getCudaDataType () |
|
template<> |
cudaDataType_t | getCudaDataType< int > () |
|
template<> |
cudaDataType_t | getCudaDataType< float > () |
|
template<> |
cudaDataType_t | getCudaDataType< double > () |
|
template<> |
cudaDataType_t | getCudaDataType< std::complex< float > > () |
|
template<> |
cudaDataType_t | getCudaDataType< std::complex< double > > () |
|
template<> |
cudaDataType_t | getCudaDataType< thrust::complex< float > > () |
|
template<> |
cudaDataType_t | getCudaDataType< thrust::complex< double > > () |
|
template<class value_type > |
cusparseIndexType_t | getCudaIndexType () |
|
template<> |
cusparseIndexType_t | getCudaIndexType< int > () |
|
template<> |
cusparseIndexType_t | getCudaIndexType< signed long int > () |
|
template<class I , class V , class value_type , class C1 , class C2 > |
void | spmv_gpu_kernel (CSRCache_gpu &cache, size_t A_num_rows, size_t A_num_cols, size_t A_nnz, const I *A_pos, const I *A_idx, const V *A_val, value_type alpha, value_type beta, const C1 *x_ptr, C2 *y_ptr) |
|
template<class I , class V , class value_type , class C1 , class C2 > |
void | spmv_omp_kernel (CSRCache_omp &cache, size_t A_num_rows, size_t A_num_cols, size_t A_nnz, const I *RESTRICT A_pos, const I *RESTRICT A_idx, const V *RESTRICT A_val, value_type alpha, value_type beta, const C1 *RESTRICT x_ptr, C2 *RESTRICT y_ptr) |
|