Limits the values in a tensor. This function follows the api from :any:`numpy.clip` See: https://numpy.org/doc/stable/reference/generated/numpy.clip.html
(self, a, a_min, a_max)
| 580 | raise NotImplementedError() |
| 581 | |
| 582 | def clip(self, a, a_min, a_max): |
| 583 | """ |
| 584 | Limits the values in a tensor. |
| 585 | |
| 586 | This function follows the api from :any:`numpy.clip` |
| 587 | |
| 588 | See: https://numpy.org/doc/stable/reference/generated/numpy.clip.html |
| 589 | """ |
| 590 | raise NotImplementedError() |
| 591 | |
| 592 | def repeat(self, a, repeats, axis=None): |
| 593 | r""" |
no outgoing calls