r""" Returns the dot product of two tensors. This function follows the api from :any:`numpy.dot` See: https://numpy.org/doc/stable/reference/generated/numpy.dot.html
(self, a, b)
| 420 | raise NotImplementedError() |
| 421 | |
| 422 | def dot(self, a, b): |
| 423 | r""" |
| 424 | Returns the dot product of two tensors. |
| 425 | |
| 426 | This function follows the api from :any:`numpy.dot` |
| 427 | |
| 428 | See: https://numpy.org/doc/stable/reference/generated/numpy.dot.html |
| 429 | """ |
| 430 | raise NotImplementedError() |
| 431 | |
| 432 | def abs(self, a): |
| 433 | r""" |
no outgoing calls