r""" Evaluates the Einstein summation convention on the operands. This function follows the api from :any:`numpy.einsum` See: https://numpy.org/doc/stable/reference/generated/numpy.einsum.html
(self, subscripts, *operands)
| 530 | raise NotImplementedError() |
| 531 | |
| 532 | def einsum(self, subscripts, *operands): |
| 533 | r""" |
| 534 | Evaluates the Einstein summation convention on the operands. |
| 535 | |
| 536 | This function follows the api from :any:`numpy.einsum` |
| 537 | |
| 538 | See: https://numpy.org/doc/stable/reference/generated/numpy.einsum.html |
| 539 | """ |
| 540 | raise NotImplementedError() |
| 541 | |
| 542 | def sort(self, a, axis=-1): |
| 543 | r""" |
no outgoing calls