DeepEP
DeepEP: an efficient expert-parallel communication library
파일 탐색기
최종 버전 다운로드 (.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
🚀 설치 가이드
1. 코드 내려받기
git clone https://github.com/deepseek-ai/DeepEP
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd DeepEP
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천사전 준비물
- Python 3 pip 명령어를 쓰려면 Python이 필요합니다.
pip install "nvidia-nccl-cu13>=2.30.4" --no-deps
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. CMake
보통사전 준비물
mkdir build && cd build
빌드 결과물을 담을 폴더를 만들고 그 안으로 이동합니다.
cmake ..
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
// repository documentation
Was this content helpful?
(0 ratings)
