Go to the source code of this file.
|
template<typename T > |
void | spla::cpu_lil_resize (uint n_rows, CpuLil< T > &lil) |
|
template<typename T > |
void | spla::cpu_lil_clear (CpuLil< T > &lil) |
|
template<typename T > |
void | spla::cpu_lil_add_element (uint row_id, uint col_id, T element, CpuLil< T > &lil) |
|
template<typename T > |
void | spla::cpu_lil_to_dok (uint n_rows, const CpuLil< T > &in, CpuDok< T > &out) |
|
template<typename T > |
void | spla::cpu_lil_to_coo (uint n_rows, const CpuLil< T > &in, CpuCoo< T > &out) |
|
template<typename T > |
void | spla::cpu_lil_to_csr (uint n_rows, const CpuLil< T > &in, CpuCsr< T > &out) |
|