Fix minor typos and errors in documentation (#474)

This commit is contained in:
Yang Wang
2025-02-28 17:46:24 -08:00
committed by GitHub
parent 6074eeeac9
commit 1ff217d5f3
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ pip install .
### Import mscclpp language module
```python
import mscclpp.language *
from mscclpp.language import *
from mscclpp.language.types import ChannelType, ReplicationPolicy
from mscclpp.language.collectives import AllGather

View File

@@ -39,7 +39,7 @@
We provide docker images which package all prerequisites for MSCCL++. You can setup your dev environment with the following command.
```bash
$ docker run -it --privileged --net=host --ipc=host --gpus all ghcr.io/microsoft/mscclpp/mscclpp:base-dev-cuda12.2 mscclpp-dev bash
$ docker run -it --privileged --net=host --ipc=host --gpus all --name mscclpp-dev ghcr.io/microsoft/mscclpp/mscclpp:base-dev-cuda12.4 bash
```
See all available images [here](https://github.com/microsoft/mscclpp/pkgs/container/mscclpp%2Fmscclpp).