Sets the seed for generating random numbers to a random number for the current GPU.
(self)
| 136 | raise RuntimeError("this method is not supported for cpu accelerator") |
| 137 | |
| 138 | def seed(self) -> None: |
| 139 | """ |
| 140 | Sets the seed for generating random numbers to a random number for the current GPU. |
| 141 | """ |
| 142 | raise RuntimeError("this method is not supported for cpu accelerator") |
| 143 | |
| 144 | def seed_all(self) -> None: |
| 145 | """ |
no outgoing calls