You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Symbolic advanced indexing has been implemented in Pull Request #18319 . However, since in symbolic indexing case the index is symbol, we could not determine the dtype of index in Python front-end. Determining dtype must be handled by backend op.
The conditional statement for dtype determining has been implemented as below in PR #18319 (code is in file src/operator/numpy/np_indexing_op.cc). For now, boolean array index case raises an error.
Also, symbolic indexing should support index as np.newaxis and implicit axis. For now this feature is missing in symbolic indexing and it also requires to be implemented.