| 144 | } |
| 145 | #ifndef USE_CUDA |
| 146 | void |
| 147 | KernelMatrix::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 | |
| 153 | void |
| 154 | KernelMatrix::dns_dns_mul(const SyncArray<kernel_type> &dense_mat, int n_rows, |
nothing calls this directly
no test coverage detected