r""" Returns the non-ngeative square root of a tensor, element-wise. This function follows the api from :any:`numpy.sqrt` See: https://numpy.org/doc/stable/reference/generated/numpy.sqrt.html
(self, a)
| 470 | raise NotImplementedError() |
| 471 | |
| 472 | def sqrt(self, a): |
| 473 | r""" |
| 474 | Returns the non-ngeative square root of a tensor, element-wise. |
| 475 | |
| 476 | This function follows the api from :any:`numpy.sqrt` |
| 477 | |
| 478 | See: https://numpy.org/doc/stable/reference/generated/numpy.sqrt.html |
| 479 | """ |
| 480 | raise NotImplementedError() |
| 481 | |
| 482 | def power(self, a, exponents): |
| 483 | r""" |
no outgoing calls