r""" Gathers elements of a tensor along given dimensions. This function follows the api from :any:`numpy.take_along_axis` See: https://numpy.org/doc/stable/reference/generated/numpy.take_along_axis.html
(self, arr, indices, axis)
| 600 | raise NotImplementedError() |
| 601 | |
| 602 | def take_along_axis(self, arr, indices, axis): |
| 603 | r""" |
| 604 | Gathers elements of a tensor along given dimensions. |
| 605 | |
| 606 | This function follows the api from :any:`numpy.take_along_axis` |
| 607 | |
| 608 | See: https://numpy.org/doc/stable/reference/generated/numpy.take_along_axis.html |
| 609 | """ |
| 610 | raise NotImplementedError() |
| 611 | |
| 612 | def concatenate(self, arrays, axis=0): |
| 613 | r""" |
no outgoing calls