MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / csr_csr_mul

Method csr_csr_mul

src/thundersvm/kernelmatrix.cpp:146–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145#ifndef USE_CUDA
146void
147KernelMatrix::csr_csr_mul(const SyncArray<kernel_type> &ws_val, int n_rows, const SyncArray<int> &ws_col_ind,
148 const SyncArray<int> &ws_row_ptr, SyncArray<kernel_type> &result) const {
149 svm_kernel::csr_csr_mul(n_instances_, n_rows, n_features_, ws_val, ws_col_ind, ws_row_ptr,
150 val_, row_ptr_, col_ind_, nnz_, ws_val.size(), result);
151}
152
153void
154KernelMatrix::dns_dns_mul(const SyncArray<kernel_type> &dense_mat, int n_rows,

Callers

nothing calls this directly

Calls 2

csr_csr_mulFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected