r""" Gives a new shape to a tensor without changing its data. This function follows the api from :any:`numpy.reshape` See: https://numpy.org/doc/stable/reference/generated/numpy.reshape.html
(self, a, shape)
| 740 | raise NotImplementedError() |
| 741 | |
| 742 | def reshape(self, a, shape): |
| 743 | r""" |
| 744 | Gives a new shape to a tensor without changing its data. |
| 745 | |
| 746 | This function follows the api from :any:`numpy.reshape` |
| 747 | |
| 748 | See: https://numpy.org/doc/stable/reference/generated/numpy.reshape.html |
| 749 | """ |
| 750 | raise NotImplementedError() |
| 751 | |
| 752 | def seed(self, seed=None): |
| 753 | r""" |
no outgoing calls