[builder] correct readme (#2375)

* [example] add google doc for benchmark results of GPT

* add tencet doc

* [example] gpt, shard init on all processes

* polish comments

* polish code

* [builder] update readme
This commit is contained in:
Jiarui Fang 2023-01-06 16:32:26 +08:00 committed by GitHub
parent a881d6d000
commit c3d9e23277
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -277,10 +277,11 @@ pip install -r requirements/requirements.txt
pip install .
```
If you don't want to install and enable CUDA kernel fusion (compulsory installation when using fused optimizer):
By default, we do not compile CUDA/C++ kernels. ColossalAI will build them during runtime.
If you want to install and enable CUDA kernel fusion (compulsory installation when using fused optimizer):
```shell
NO_CUDA_EXT=1 pip install .
CUDA_EXT=1 pip install .
```
<p align="right">(<a href="#top">back to top</a>)</p>