r""" Creates a tensor full of ones. This function follows the api from :any:`numpy.ones` See: https://numpy.org/doc/stable/reference/generated/numpy.ones.html
(self, shape, type_as=None)
| 311 | raise NotImplementedError() |
| 312 | |
| 313 | def ones(self, shape, type_as=None): |
| 314 | r""" |
| 315 | Creates a tensor full of ones. |
| 316 | |
| 317 | This function follows the api from :any:`numpy.ones` |
| 318 | |
| 319 | See: https://numpy.org/doc/stable/reference/generated/numpy.ones.html |
| 320 | """ |
| 321 | raise NotImplementedError() |
| 322 | |
| 323 | def arange(self, stop, start=0, step=1, type_as=None): |
| 324 | r""" |
no outgoing calls