Skip to content

Commit

Permalink
allow hsdp (mosaicml#2838)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvpatel2000 authored Jan 11, 2024
1 parent 6c63f2e commit 83fb295
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions composer/trainer/mosaic_fsdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ def patch_pytorch():
elif version.parse(torch.__version__) < version.parse('2.2.1'):
# Monkey patch for torch < 2.2.1 ie torch == 2.2.0

# Allow 2D HSDP
from torch.distributed.fsdp import _runtime_utils
_runtime_utils._validate_and_get_hybrid_shard_state = lambda *args, **kwargs: None

# # Better overlap communication and computation
# from torch.distributed.fsdp import _runtime_utils

Expand Down

0 comments on commit 83fb295

Please sign in to comment.