Files
mscclpp/docs
Binyang Li ba4c4aaeb8 Integrate MSCCL++ with torch workload (#626)
Integrate MSCCL++ with torch
Introduce `NCCL audit shim library`, use can use following commands to
launch torch library. Also avoid break build pipeline in the CPU machine
```bash
export LD_AUDIT=$MSCCLPP_INSTALL_DIR/libmscclpp_audit_nccl.so
export LD_LIBRARY_PATH=$MSCCLPP_INSTALL_DIR:$LD_LIBRARY_PATH
torchrun --nnodes=1 --nproc_per_node=8 your_script.py
```
2025-09-09 13:28:32 -07:00
..
2025-08-07 15:37:37 -07:00
2025-08-09 00:36:20 -07:00
2025-09-03 14:58:40 -07:00
2025-08-07 15:37:37 -07:00
2025-08-11 10:34:29 -07:00
2025-08-11 10:34:29 -07:00
2025-08-07 15:37:37 -07:00
2025-08-07 15:37:37 -07:00
2025-08-11 10:34:29 -07:00
2023-11-22 12:58:04 -08:00
2023-11-22 12:58:04 -08:00
2025-08-07 15:37:37 -07:00
2025-08-11 10:34:29 -07:00
2024-10-18 06:08:31 +00:00
2025-08-07 15:37:37 -07:00

How to build docs

  1. Install doxygen.

    $ sudo apt-get install doxygen graphviz
    
  2. Install Python packages below. If you install them on the user's local, you need to include ~/.local/bin to $PATH (to use sphinx-build).

    $ sudo python3 -m pip install -r ./requirements.txt
    
  3. Create Doxygen documents.

    $ doxygen
    
  4. Create Sphinx documents.

    $ make html
    
  5. Done. The HTML files will be on _build/ directory.