Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
parthraut committed Dec 13, 2024
1 parent 63f7fe9 commit ea0f866
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions zeus/utils/framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def all_reduce(
if jax.process_count() == 1:
return object

raise NotImplementedError("JAX all-reduce not yet implemented")
raise NotImplementedError("JAX distributed all-reduce not yet implemented")

raise RuntimeError("No framework is available.")

Expand All @@ -155,4 +155,3 @@ def is_distributed() -> bool:
if jax_is_available():
jax = MODULE_CACHE["jax"]
return jax.process_count() > 1
return False

0 comments on commit ea0f866

Please sign in to comment.