# Colossal-AI
(返回顶端)
## 特点 Colossal-AI 为您提供了一系列并行组件。我们的目标是让您的分布式 AI 模型像构建普通的单 GPU 模型一样简单。我们提供的友好工具可以让您在几行代码内快速开始分布式训练和推理。 - 并行化策略 - 数据并行 - 流水线并行 - 1维, [2维](https://arxiv.org/abs/2104.05343), [2.5维](https://arxiv.org/abs/2105.14500), [3维](https://arxiv.org/abs/2105.14450) 张量并行 - [序列并行](https://arxiv.org/abs/2105.13120) - [零冗余优化器 (ZeRO)](https://arxiv.org/abs/1910.02054) - 异构内存管理 - [PatrickStar](https://arxiv.org/abs/2108.05818) - 使用友好 - 基于参数文件的并行化 - 推理 - [Energon-AI](https://github.com/hpcaitech/EnergonAI)(返回顶端)
## 并行训练样例展示 ### ViT- 14倍批大小和5倍训练速度(张量并行=64) ### GPT-3
- 释放 50% GPU 资源占用, 或 10.7% 加速 ### GPT-2 - 降低11倍 GPU 显存占用,或超线性扩展(张量并行) - 用相同的硬件训练24倍大的模型 - 超3倍的吞吐量 ### BERT - 2倍训练速度,或1.5倍序列长度 ### PaLM - [PaLM-colossalai](https://github.com/hpcaitech/PaLM-colossalai): 可扩展的谷歌 Pathways Language Model ([PaLM](https://ai.googleblog.com/2022/04/pathways-language-model-palm-scaling-to.html)) 实现。 请访问我们的[文档和教程](https://www.colossalai.org/)以了解详情。
(返回顶端)
## 单GPU训练样例展示 ### GPT-2- 用相同的硬件训练20倍大的模型 ### PaLM
- 用相同的硬件训练34倍大的模型 ## 推理 (Energon-AI) 样例展示 ### GPT-3
- [Energon-AI](https://github.com/hpcaitech/EnergonAI) :用相同的硬件推理加速50% ## 安装 ### 从官方安装 您可以访问我们[下载](https://www.colossalai.org/download)页面来安装Colossal-AI,在这个页面上发布的版本都预编译了CUDA扩展。 ### 从源安装 > 此文档将与版本库的主分支保持一致。如果您遇到任何问题,欢迎给我们提 issue :) ```shell git clone https://github.com/hpcaitech/ColossalAI.git cd ColossalAI # install dependency pip install -r requirements/requirements.txt # install colossalai pip install . ``` 如果您不想安装和启用 CUDA 内核融合(使用融合优化器时强制安装): ```shell NO_CUDA_EXT=1 pip install . ```
(返回顶端)
## 使用 Docker 运行以下命令从我们提供的 docker 文件中建立 docker 镜像。 > 在Dockerfile里编译Colossal-AI需要有GPU支持,您需要将Nvidia Docker Runtime设置为默认的Runtime。更多信息可以点击[这里](https://stackoverflow.com/questions/59691207/docker-build-with-nvidia-runtime)。 > 我们推荐从[项目主页](https://www.colossalai.org)直接下载Colossal-AI. ```bash cd ColossalAI docker build -t colossalai ./docker ``` 运行以下命令从以交互式启动 docker 镜像. ```bash docker run -ti --gpus all --rm --ipc=host colossalai bash ```(返回顶端)
## 社区 欢迎通过[论坛](https://github.com/hpcaitech/ColossalAI/discussions), [Slack](https://join.slack.com/t/colossalaiworkspace/shared_invite/zt-z7b26eeb-CBp7jouvu~r0~lcFzX832w), 或[微信](https://raw.githubusercontent.com/hpcaitech/public_assets/main/colossalai/img/WeChat.png "qrcode")加入 Colossal-AI 社区,与我们分享你的建议和问题。 ## 做出贡献 欢迎为该项目做出贡献,请参阅[贡献指南](./CONTRIBUTING.md)。 真诚感谢所有贡献者! *贡献者头像的展示顺序是随机的。*(返回顶端)
## 快速预览 ### 几行代码开启分布式训练 ```python parallel = dict( pipeline=2, tensor=dict(mode='2.5d', depth = 1, size=4) ) ``` ### 几行代码开启异构训练 ```python zero = dict( model_config=dict( tensor_placement_policy='auto', shard_strategy=TensorShardStrategy(), reuse_fp16_shard=True ), optimizer_config=dict(initial_scale=2**5, gpu_margin_mem_ratio=0.2) ) ```(返回顶端)
## 引用我们 ``` @article{bian2021colossal, title={Colossal-AI: A Unified Deep Learning System For Large-Scale Parallel Training}, author={Bian, Zhengda and Liu, Hongxin and Wang, Boxiang and Huang, Haichen and Li, Yongbin and Wang, Chuanrui and Cui, Fan and You, Yang}, journal={arXiv preprint arXiv:2110.14883}, year={2021} } ```(返回顶端)