(self, *size, type_as=None)
| 1311 | return self.rng_.rand(*size) |
| 1312 | |
| 1313 | def randn(self, *size, type_as=None): |
| 1314 | return self.rng_.randn(*size) |
| 1315 | |
| 1316 | def randperm(self, size, type_as=None): |
| 1317 | if not isinstance(size, int): |
no test coverage detected