126 lines
3.9 KiB
Python
Executable File
126 lines
3.9 KiB
Python
Executable File
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# DeepSpeed Team
|
|
|
|
import os
|
|
import json
|
|
import argparse
|
|
import torch
|
|
import deepspeed
|
|
from torch.utils.data.distributed import DistributedSampler
|
|
import deepspeed.comm as dist
|
|
|
|
|
|
class SimpleModel(torch.nn.Module):
|
|
|
|
def __init__(self, hidden_dim, empty_grad=False):
|
|
super(SimpleModel, self).__init__()
|
|
self.linear = torch.nn.Linear(hidden_dim, hidden_dim, bias=True)
|
|
self.linear = torch.nn.Linear(hidden_dim, hidden_dim, bias=False)
|
|
if empty_grad:
|
|
self.layers2 = torch.nn.ModuleList([torch.nn.Linear(hidden_dim,
|
|
hidden_dim)]) #QuantizeLinear(hidden_dim, hidden_dim)
|
|
self.cross_entropy_loss = torch.nn.CrossEntropyLoss()
|
|
|
|
def forward(self, x, y):
|
|
hidden = x
|
|
hidden1 = self.linear(hidden)
|
|
hidden2 = self.linear(hidden1)
|
|
return self.cross_entropy_loss(hidden2, y)
|
|
|
|
|
|
def create_config_from_dict(tmpdir, config_dict):
|
|
config_path = os.path.join(tmpdir, 'temp_config.json')
|
|
with open(config_path, 'w') as fd:
|
|
json.dump(config_dict, fd)
|
|
return config_path
|
|
|
|
|
|
def get_data_loader(model, total_samples, hidden_dim, device):
|
|
batch_size = model.train_micro_batch_size_per_gpu()
|
|
train_data = torch.randn(total_samples, hidden_dim, device=device, dtype=torch.half)
|
|
train_label = torch.empty(total_samples, dtype=torch.long, device=device).random_(hidden_dim)
|
|
train_dataset = torch.utils.data.TensorDataset(train_data, train_label)
|
|
sampler = DistributedSampler(train_dataset)
|
|
train_loader = torch.utils.data.DataLoader(train_dataset, batch_size=batch_size, sampler=sampler)
|
|
return train_loader
|
|
|
|
|
|
def get_args(tmpdir, config_dict):
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--local_rank", type=int, default=0)
|
|
parser.add_argument('--zero', type=int, default=0)
|
|
parser.add_argument('--zero_hpz_partition_size', type=int, default=1)
|
|
args = parser.parse_args() #args=''
|
|
|
|
config_dict["zero_optimization"]["stage"] = args.zero
|
|
config_dict["zero_optimization"]["zero_hpz_partition_size"] = args.zero_hpz_partition_size
|
|
print('config_dict["zero_optimization"]', config_dict["zero_optimization"])
|
|
config_path = create_config_from_dict(tmpdir, config_dict)
|
|
|
|
args.deepspeed_config = config_path
|
|
return args
|
|
|
|
|
|
def print0(msg):
|
|
if dist.get_rank() == 0:
|
|
print(msg, flush=True)
|
|
|
|
|
|
rank = int(os.environ['RANK'])
|
|
print('seed:', 2222 + rank)
|
|
torch.random.manual_seed(2222 + rank)
|
|
|
|
config_dict = {
|
|
"train_batch_size": 256,
|
|
"steps_per_print": 1,
|
|
"optimizer": {
|
|
"type": "Adam",
|
|
"params": {
|
|
"lr": 0.00015,
|
|
}
|
|
},
|
|
"fp16": {
|
|
"enabled": True,
|
|
"initial_scale_power": 8
|
|
},
|
|
"zero_optimization": {
|
|
"stage": 0,
|
|
"reduce_bucket_size": 20,
|
|
"zero_hpz_partition_size": 1,
|
|
"reduce_scatter": True,
|
|
"zero_quantized_weights": False,
|
|
"zero_quantized_gradients": False
|
|
}
|
|
}
|
|
# "initial_scale_power": 15
|
|
args = get_args('/tmp/', config_dict)
|
|
hidden_dim = 4 * 1024
|
|
|
|
model = SimpleModel(hidden_dim, empty_grad=False)
|
|
|
|
model, _, _, _ = deepspeed.initialize(args=args,
|
|
model=model,
|
|
model_parameters=model.parameters(),
|
|
dist_init_required=True)
|
|
|
|
|
|
def print_params(tag, model):
|
|
if dist.get_rank() == 0:
|
|
for n, p in model.named_parameters():
|
|
print0("{} {}:{}".format(tag, n, p))
|
|
|
|
|
|
data_loader = get_data_loader(model=model, total_samples=256, hidden_dim=hidden_dim, device=model.device)
|
|
#print_params('pre-train', model)
|
|
|
|
for n, batch in enumerate(data_loader):
|
|
loss = model(batch[0], batch[1])
|
|
if dist.get_rank() == 0:
|
|
print("LOSS:", loss.item())
|
|
model.backward(loss)
|
|
model.step()
|
|
#print_params('step={}'.format(n), model)
|
|
#if n == 5: break
|