mirror of https://github.com/hpcaitech/ColossalAI
130 lines
4.5 KiB
Python
130 lines
4.5 KiB
Python
import time
|
|
|
|
import torch
|
|
import transformers
|
|
from transformers import ViTConfig, ViTForImageClassification
|
|
import tqdm
|
|
|
|
import colossalai
|
|
from colossalai.nn.optimizer import HybridAdam
|
|
from colossalai.logging import disable_existing_loggers, get_dist_logger
|
|
from colossalai.utils import get_current_device
|
|
from colossalai.booster import Booster
|
|
from colossalai.booster.plugin import GeminiPlugin, LowLevelZeroPlugin, TorchDDPPlugin
|
|
from colossalai.cluster import DistCoordinator
|
|
|
|
from args import parse_benchmark_args
|
|
|
|
def format_num(num: int, bytes=False):
|
|
"""Scale bytes to its proper format, e.g. 1253656 => '1.20MB'"""
|
|
factor = 1024 if bytes else 1000
|
|
suffix = "B" if bytes else ""
|
|
for unit in ["", " K", " M", " G", " T", " P"]:
|
|
if num < factor:
|
|
return f"{num:.2f}{unit}{suffix}"
|
|
num /= factor
|
|
|
|
|
|
def get_data(batch_size, num_labels, num_channels=3, height=224, width=224):
|
|
pixel_values = torch.randn(batch_size, num_channels, height, width, device=torch.cuda.current_device(), dtype=torch.float)
|
|
labels = torch.randint(0, num_labels, (batch_size, ), device=torch.cuda.current_device(), dtype=torch.int64)
|
|
return pixel_values, labels
|
|
|
|
|
|
def colo_memory_cap(size_in_GB):
|
|
from colossalai.utils import colo_device_memory_capacity, colo_set_process_memory_fraction, get_current_device
|
|
cuda_capacity = colo_device_memory_capacity(get_current_device())
|
|
if size_in_GB * (1024**3) < cuda_capacity:
|
|
colo_set_process_memory_fraction(size_in_GB * (1024**3) / cuda_capacity)
|
|
print(f"Limiting GPU memory usage to {size_in_GB} GB")
|
|
|
|
|
|
def main():
|
|
|
|
args = parse_benchmark_args()
|
|
|
|
# Launch ColossalAI
|
|
colossalai.launch_from_torch(config={}, seed=args.seed)
|
|
coordinator = DistCoordinator()
|
|
world_size = coordinator.world_size
|
|
|
|
# Manage loggers
|
|
disable_existing_loggers()
|
|
logger = get_dist_logger()
|
|
if coordinator.is_master():
|
|
transformers.utils.logging.set_verbosity_info()
|
|
else:
|
|
transformers.utils.logging.set_verbosity_error()
|
|
|
|
# Whether to set limit on memory capacity
|
|
if args.mem_cap > 0:
|
|
colo_memory_cap(args.mem_cap)
|
|
|
|
# Build ViT model
|
|
config = ViTConfig.from_pretrained(args.model_name_or_path)
|
|
model = ViTForImageClassification(config)
|
|
logger.info(f"Finish loading model from {args.model_name_or_path}", ranks=[0])
|
|
|
|
# Enable gradient checkpointing
|
|
model.gradient_checkpointing_enable()
|
|
|
|
# Set plugin
|
|
booster_kwargs = {}
|
|
if args.plugin == 'torch_ddp_fp16':
|
|
booster_kwargs['mixed_precision'] = 'fp16'
|
|
if args.plugin.startswith('torch_ddp'):
|
|
plugin = TorchDDPPlugin()
|
|
elif args.plugin == 'gemini':
|
|
plugin = GeminiPlugin(device=get_current_device(),
|
|
placement_policy='cpu',
|
|
pin_memory=True,
|
|
strict_ddp_mode=True,
|
|
initial_scale=2**5)
|
|
elif args.plugin == 'low_level_zero':
|
|
plugin = LowLevelZeroPlugin(initial_scale=2**5)
|
|
logger.info(f"Set plugin as {args.plugin}", ranks=[0])
|
|
|
|
# Set optimizer
|
|
optimizer = HybridAdam(model.parameters(), lr=(args.learning_rate * world_size))
|
|
|
|
# Set booster
|
|
booster = Booster(plugin=plugin, **booster_kwargs)
|
|
model, optimizer, _, _, _ = booster.boost(model, optimizer)
|
|
|
|
|
|
# Start training.
|
|
logger.info(f"Start testing", ranks=[0])
|
|
progress_bar = tqdm.tqdm(total=args.max_train_steps, desc="Training Step", disable=not coordinator.is_master())
|
|
|
|
torch.cuda.synchronize()
|
|
model.train()
|
|
start_time = time.time()
|
|
|
|
for _ in range(args.max_train_steps):
|
|
|
|
pixel_values, labels = get_data(args.batch_size, args.num_labels, 3, 224, 224)
|
|
optimizer.zero_grad()
|
|
outputs = model(pixel_values=pixel_values, labels=labels)
|
|
loss = outputs['loss']
|
|
booster.backward(loss, optimizer)
|
|
optimizer.step()
|
|
|
|
torch.cuda.synchronize()
|
|
progress_bar.update(1)
|
|
|
|
# Compute Statistics
|
|
end_time = time.time()
|
|
throughput = "{:.4f}".format((world_size * args.max_train_steps * args.batch_size) / (end_time - start_time))
|
|
max_mem = format_num(torch.cuda.max_memory_allocated(device=torch.cuda.current_device()), bytes=True)
|
|
|
|
logger.info(f"Testing finished, "
|
|
f"batch size per gpu: {args.batch_size}, "
|
|
f"plugin: {args.plugin}, "
|
|
f"throughput: {throughput}, "
|
|
f"maximum memory usage per gpu: {max_mem}.",
|
|
ranks=[0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|