r""" First tensor elements raised to powers from second tensor, element-wise. This function follows the api from :any:`numpy.power` See: https://numpy.org/doc/stable/reference/generated/numpy.power.html
(self, a, exponents)
| 480 | raise NotImplementedError() |
| 481 | |
| 482 | def power(self, a, exponents): |
| 483 | r""" |
| 484 | First tensor elements raised to powers from second tensor, element-wise. |
| 485 | |
| 486 | This function follows the api from :any:`numpy.power` |
| 487 | |
| 488 | See: https://numpy.org/doc/stable/reference/generated/numpy.power.html |
| 489 | """ |
| 490 | raise NotImplementedError() |
| 491 | |
| 492 | def norm(self, a, axis=None, keepdims=False): |
| 493 | r""" |
no outgoing calls