Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ in the form `x.reduction()`, the following reductions are supported:
## Indexing

[`sparse.COO`][] and [`sparse.GCXS`][] arrays can be [indexed](https://numpy.org/doc/stable/user/basics.indexing.html)
just like regular [`numpy.ndarray`][] objects. They support integer, slice and boolean indexing.
just like regular [`numpy.ndarray`][] objects. They support integer, slice and boolean indexing(sparse boolean index not supported yet).
However, currently, numpy advanced indexing is not properly supported. This
means that all of the following work like in Numpy, except that they will produce
[`sparse.SparseArray`][] arrays rather than [`numpy.ndarray`][] objects, and will produce
Expand Down
2 changes: 1 addition & 1 deletion sparse/numba_backend/_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
def capabilities(self):
np_capabilities = self.np_info.capabilities()
return {
"boolean indexing": True,
"boolean indexing": False,
"data-dependent shapes": True,
"max dimensions": np_capabilities.get("max dimensions", 64) - 1,
}
Expand Down
Loading