Skip to content

Commit

Permalink
Fixed horovod backend
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaddair committed Dec 31, 2022
1 parent bee031b commit b99e580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ludwig/backend/horovod.py
Expand Up @@ -44,7 +44,7 @@ def initialize(self):

def initialize_pytorch(self, *args, **kwargs):
initialize_pytorch(
*args, local_rank=self._distributed.local_rank(), local_size=self._distributed.local_size() ** kwargs
*args, local_rank=self._distributed.local_rank(), local_size=self._distributed.local_size(), **kwargs
)

def create_trainer(self, **kwargs) -> "BaseTrainer": # noqa: F821
Expand Down

0 comments on commit b99e580

Please sign in to comment.