torch.manual_seed¶ torch.manual_seed(seed)[source]¶ 设置所有设备上生成随机数的种子。返回一个 torch.Generator 对象。 参数 seed (int) – 期望的种子。值必须在包含范围 [-0x8000_0000_0000_0000, 0xffff_ffff_ffff_ffff] 内。否则,将引发 RuntimeError。负输入将使用公式 0xffff_ffff_ffff_ffff + seed 重新映射为正值。 返回类型 Generator