MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / GrB_Matrix_select_Scalar

Function GrB_Matrix_select_Scalar

deps/GraphBLAS/Source/GrB_Matrix_select.c:127–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125//------------------------------------------------------------------------------
126
127GrB_Info GrB_Matrix_select_Scalar
128(
129 GrB_Matrix C, // input/output matrix for results
130 const GrB_Matrix M, // optional mask for C, or NULL
131 const GrB_BinaryOp accum, // optional accum for Z=accum(C,T)
132 const GrB_IndexUnaryOp op, // operator to select the entries
133 const GrB_Matrix A, // first input: matrix A
134 const GrB_Scalar Thunk, // optional input for select operator
135 const GrB_Descriptor desc // descriptor for C, M, and A
136)
137{
138 GB_WHERE (C, "GrB_Matrix_select_Scalar (C, M, accum, op, A, thunk, desc)") ;
139 return (GB_sel (C, M, accum, op, A, Thunk, desc, Context)) ;
140}
141

Callers 2

mexFunctionFunction · 0.85
mexFunctionFunction · 0.85

Calls 1

GB_selFunction · 0.70

Tested by

no test coverage detected