DeepEP
DeepEP: an efficient expert-parallel communication library
File Explorer
Download Latest Version (.zip)- format.yml
- buffer.hpp
- utils.hpp
- main.cu
- api.hpp
- cache.hpp
- compiler.hpp
- device_runtime.hpp
- handle.hpp
- include_parser.hpp
- kernel_runtime.hpp
- launch_runtime.hpp
- no_ref.hpp
- api.cuh
- CMakeLists.txt
- cuda_driver.cu
- nccl.cu
- nvshmem.cu
- symmetric.hpp
- api.hpp
- barrier.hpp
- combine.hpp
- dispatch.hpp
- engram.hpp
- pp_send_recv.hpp
- api.cuh
- buffer.cuh
- CMakeLists.txt
- compiled.cuh
- ibgda_device.cuh
- internode.cu
- internode_ll.cu
- intranode.cu
- launch.cuh
- layout.cu
- utils.cuh
- CMakeLists.txt
- buffer.hpp
- config.hpp
- event.hpp
- format.hpp
- hash.hpp
- lazy_driver.hpp
- lazy_init.hpp
- shared_memory.hpp
- system.hpp
- CMakeLists.txt
- python_api.cpp
- __init__.py
- elastic.py
- legacy.py
- comm.cuh
- compiled.cuh
- exception.cuh
- handle.cuh
- layout.cuh
- math.cuh
- ptx.cuh
- barrier.cuh
- combine.cuh
- combine_reduce_epilogue.cuh
- combine_utils.cuh
- dispatch.cuh
- dispatch_copy_epilogue.cuh
- engram_fetch.cuh
- engram_fetch_wait.cuh
- hybrid_combine.cuh
- hybrid_dispatch.cuh
- pp_send_recv.cuh
- __init__.py
- comm.py
- envs.py
- event.py
- find_pkgs.py
- gate.py
- math.py
- refs.py
- semantic.py
- testing.py
- __init__.py
- legacy.md
- nvshmem.md
- low-latency.png
- normal.png
- test_agrs.py
- test_barrier.py
- test_engram.py
- test_ep.py
- test_pp.py
- test_internode.py
- test_intranode.py
- test_low_latency.py
- test_gate.py
- fmt
- .clang-format
- .editorconfig
- .gitignore
- .gitmodules
- build.sh
- CMakeLists.txt
- develop.sh
- format.sh
- install.sh
- LICENSE
- pyproject.toml
- README.md
- requirements-lint.txt
- setup.py
# Installation Guide
1. Get the code
git clone https://github.com/deepseek-ai/DeepEP
Downloads the entire project code from GitHub to your computer.
cd DeepEP
Moves into the project folder you just downloaded.
2. Official Install Script
Easy RecommendedPrerequisites
- Python 3 Python is required to use pip.
pip install "nvidia-nccl-cu13>=2.30.4" --no-deps
Installs the package published on PyPI directly β no need to clone the source.
After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.
Pulled directly from this repo's README.
3. CMake
MediumPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
4. Python
EasyPrerequisites
pip install "nvidia-nccl-cu13>=2.30.4" --no-deps
Installs the package published on PyPI directly β no need to clone the source.
If it runs without errors and prints output in the terminal, it worked.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
