(device: str, seed: int)
| 1504 | |
| 1505 | # These are callables which automatically dispatch the function specific to the accelerator |
| 1506 | def backend_manual_seed(device: str, seed: int): |
| 1507 | return _device_agnostic_dispatch(device, BACKEND_MANUAL_SEED, seed) |
| 1508 | |
| 1509 | |
| 1510 | def backend_synchronize(device: str): |
no test coverage detected
searching dependent graphs…