MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_sparse_get_col_idx

Function af_sparse_get_col_idx

src/api/c/sparse.cpp:466–473  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464}
465
466af_err af_sparse_get_col_idx(af_array *out, const af_array in) {
467 try {
468 const SparseArrayBase base = getSparseArrayBase(in);
469 *out = getHandle(base.getColIdx());
470 }
471 CATCHALL;
472 return AF_SUCCESS;
473}
474
475af_err af_sparse_get_nnz(dim_t *out, const af_array in) {
476 try {

Callers 2

af_sparse_get_infoFunction · 0.70
sparseGetColIdxFunction · 0.50

Calls 1

getHandleFunction · 0.70

Tested by

no test coverage detected