r""" Creates a tensor with given shape, filled with given value. This function follows the api from :any:`numpy.full` See: https://numpy.org/doc/stable/reference/generated/numpy.full.html
(self, shape, fill_value, type_as=None)
| 331 | raise NotImplementedError() |
| 332 | |
| 333 | def full(self, shape, fill_value, type_as=None): |
| 334 | r""" |
| 335 | Creates a tensor with given shape, filled with given value. |
| 336 | |
| 337 | This function follows the api from :any:`numpy.full` |
| 338 | |
| 339 | See: https://numpy.org/doc/stable/reference/generated/numpy.full.html |
| 340 | """ |
| 341 | raise NotImplementedError() |
| 342 | |
| 343 | def eye(self, N, M=None, type_as=None): |
| 344 | r""" |
no outgoing calls