Personally, I don’t generally use a random seed, since I quite like to see what amount of natural variation there is. But I believe this should do it:
np.random.seed(args.manualSeed)
torch.manual_seed(args.manualSeed)
torch.cuda.manual_seed_all(args.manualSeed)