From 4459a9474e5da9ce3f96d09fe561e8e7ff10dca5 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 15 Jan 2020 12:27:54 -0800 Subject: [PATCH] updates --- utils/torch_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/torch_utils.py b/utils/torch_utils.py index d984dfca..d615e2a8 100644 --- a/utils/torch_utils.py +++ b/utils/torch_utils.py @@ -5,8 +5,6 @@ import torch def init_seeds(seed=0): torch.manual_seed(seed) - torch.cuda.manual_seed(seed) - torch.cuda.manual_seed_all(seed) # Remove randomness (may be slower on Tesla GPUs) # https://pytorch.org/docs/stable/notes/randomness.html if seed == 0: