mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[rllib] Fixes typo in RolloutWorker.__init__ (#17583)
Fixes the typo in RolloutWorker.__init__, closes #17582
This commit is contained in:
parent
9f5dc5ec9f
commit
0cb2c602db
1 changed files with 1 additions and 1 deletions
|
@ -538,7 +538,7 @@ class RolloutWorker(ParallelIteratorWorker):
|
|||
# Not all Operations support this.
|
||||
torch.use_deterministic_algorithms(True)
|
||||
else:
|
||||
torch.set_determinstic(True)
|
||||
torch.set_deterministic(True)
|
||||
# This is only for Convolution no problem.
|
||||
torch.backends.cudnn.deterministic = True
|
||||
# Tf2.x.
|
||||
|
|
Loading…
Add table
Reference in a new issue