-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathfsdp_save_reshard.py
More file actions
144 lines (126 loc) · 5.04 KB
/
fsdp_save_reshard.py
File metadata and controls
144 lines (126 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
################################################################################
#
# Copyright 2025 ByteDance Ltd. and/or its affiliates. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
import argparse
import os
import torch
import torch.distributed as dist
from torch import nn
from torch.distributed.fsdp import FullyShardedDataParallel as FSDP
from torch.distributed.fsdp import MixedPrecision
import bytecheckpoint as bcp
PLATFORM = os.environ.get("PLATFORM", "cuda").lower()
if PLATFORM not in {"cuda", "musa"}:
PLATFORM = "cuda"
if PLATFORM == "musa":
import torch_musa # noqa: F401
CKPT_PATH = "./tmp_checkpoint_dir_fsdp"
HIDDEN_SIZE = 512
LAYER_NUM = 8
class Layer(nn.Module):
def __init__(self, hidden_size):
super().__init__()
self.net1 = nn.Linear(hidden_size, hidden_size * 4)
self.relu = nn.ReLU()
self.net2 = nn.Linear(hidden_size * 4, hidden_size)
def forward(self, x):
return self.net2(self.relu(self.net1(x)))
class Model(nn.Module):
def __init__(self, hidden_size, layer_num):
super().__init__()
self.layers = nn.ModuleList([Layer(hidden_size) for _ in range(layer_num)])
def forward(self, x):
for layer in self.layers:
x = layer(x)
return x
if __name__ == "__main__":
# Parse arguments
parser = argparse.ArgumentParser(description="ByteCheckpoint demo.")
parser.add_argument(
"--mode", "-m", type=str, default="normal", choices=["normal", "resume"], help="training mode to run"
)
parser.add_argument("--ckpt_path", type=str, default=CKPT_PATH, help="path to load/save the checkpoints")
parser.add_argument("--iterations", "-i", type=int, default=3, help="the number of training iterations to run")
args = parser.parse_args()
# Start Distributed PyTorch
rank = int(os.environ["RANK"])
world_size = int(os.environ["WORLD_SIZE"])
if PLATFORM == "cuda":
backend = "nccl"
elif PLATFORM == "musa":
backend = "mccl"
else:
backend = "nccl"
dist.init_process_group(backend=backend, rank=rank, world_size=world_size)
if PLATFORM == "cuda":
torch.cuda.set_device(rank)
elif PLATFORM == "musa":
torch.musa.set_device(rank)
# Define and initalize FSDP model and optimizer
model = Model(HIDDEN_SIZE, LAYER_NUM).to(rank)
# Currently, decomposition representation for FSDP requires to set `use_orig_params=True`.
model = FSDP(
model,
mixed_precision=MixedPrecision(param_dtype=torch.float16, cast_forward_inputs=True),
use_orig_params=True,
)
optimizer = torch.optim.Adam(model.parameters(), lr=0.1)
optimizer.zero_grad()
# Normal mode: training with iteration-level async checkpointing.
if args.mode == "normal":
checkpoint_state = {
"model": model,
"optimizer": optimizer,
"extra_state": {"torch_rng_state": torch.get_rng_state()},
}
for iter in range(args.iterations):
loss = model(torch.ones(HIDDEN_SIZE, HIDDEN_SIZE, device=PLATFORM)).sum()
loss.backward()
optimizer.step()
# Save ckpt every step
bcp.save(
args.ckpt_path,
checkpoint_state,
framework="fsdp",
fast_saving=True,
global_steps=iter,
)
else:
# Resume mode: resume from checkpoint and continue training.
checkpoint_state = {"model": model, "optimizer": optimizer, "extra_state": {}}
bcp.load(
f"{args.ckpt_path}/global_step_0",
checkpoint_state,
framework="fsdp",
fast_loading=True,
)
torch.set_rng_state(checkpoint_state["extra_state"]["torch_rng_state"])
for iter in range(args.iterations):
loss = model(torch.ones(HIDDEN_SIZE, HIDDEN_SIZE, device=PLATFORM)).sum()
loss.backward()
optimizer.step()
# Save ckpt every step
bcp.save(
args.ckpt_path,
checkpoint_state,
framework="fsdp",
fast_saving=True,
global_steps=iter,
)
dist.barrier()
dist.destroy_process_group()
# torchrun --master_addr=localhost --master_port=6000 --nproc_per_node=8 --nnodes=1 demo/fsdp_save_reshard.py --mode normal
# torchrun --master_addr=localhost --master_port=6000 --nproc_per_node=4 --nnodes=1 demo/fsdp_save_reshard.py --mode resume