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

Function af_sparse_get_row_idx

src/api/c/sparse.cpp:457–464  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

455}
456
457af_err af_sparse_get_row_idx(af_array *out, const af_array in) {
458 try {
459 const SparseArrayBase base = getSparseArrayBase(in);
460 *out = getHandle(base.getRowIdx());
461 }
462 CATCHALL;
463 return AF_SUCCESS;
464}
465
466af_err af_sparse_get_col_idx(af_array *out, const af_array in) {
467 try {

Callers 2

af_sparse_get_infoFunction · 0.70
sparseGetRowIdxFunction · 0.50

Calls 1

getHandleFunction · 0.70

Tested by

no test coverage detected