Index arrays. Returns ------- list of ndarrays
(self)
| 259 | |
| 260 | @property |
| 261 | def indices(self): |
| 262 | """Index arrays. |
| 263 | |
| 264 | Returns |
| 265 | ------- |
| 266 | list of ndarrays |
| 267 | """ |
| 268 | ret = [_CAPI_DGLSparseMatrixGetIndices(self, i) for i in range(3)] |
| 269 | return [F.zerocopy_from_dgl_ndarray(arr) for arr in ret] |
| 270 | |
| 271 | @property |
| 272 | def flags(self): |
no outgoing calls