(self: ArrayLike, order: NotImplementedType = "C")
| 294 | |
| 295 | @normalizer |
| 296 | def flatten(self: ArrayLike, order: NotImplementedType = "C"): |
| 297 | return torch.flatten(self) |
| 298 | |
| 299 | def resize(self, *new_shape, refcheck=False): |
| 300 | # NB: differs from np.resize: fills with zeros instead of making repeated copies of input. |
no outgoing calls