oneflow.cuda.manual_seed

oneflow.cuda.manual_seed(seed: int)None

Sets the seed for generating random numbers for the current GPU.

The documentation is referenced from: https://pytorch.org/docs/1.10/generated/torch.cuda.manual_seed.html.

It’s safe to call this function if CUDA is not available; in that case, it is silently ignored.

Parameters

seed (int) – The desired seed.

Warning

If you are working with a multi-GPU model, this function is insufficient to get determinism. To seed all GPUs, use manual_seed_all().