![]() |
PARALUTION
1.0.0
PARALUTION
|
#include "cuda_kernels_ell.hpp"
#include "cuda_kernels_coo.hpp"
#include "../matrix_formats_ind.hpp"
Go to the source code of this file.
Namespaces | |
paralution | |
Functions | |
template<typename IndexType > | |
__global__ void | paralution::kernel_ell_nnz_coo (const IndexType nrow, const IndexType max_row, const IndexType *row_offset, IndexType *nnz_coo) |
template<typename ValueType , typename IndexType > | |
__global__ void | paralution::kernel_ell_fill_ell (const IndexType nrow, const IndexType max_row, const IndexType *row_offset, const IndexType *col, const ValueType *val, IndexType *ELL_col, ValueType *ELL_val, IndexType *nnz_ell) |
template<typename ValueType , typename IndexType > | |
__global__ void | paralution::kernel_ell_fill_coo (const IndexType nrow, const IndexType *row_offset, const IndexType *col, const ValueType *val, const IndexType *nnz_coo, const IndexType *nnz_ell, IndexType *COO_row, IndexType *COO_col, ValueType *COO_val) |