You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -45,23 +44,8 @@ Please refer to the [FAQ](https://lightllm-en.readthedocs.io/en/latest/faq.html)
45
44
46
45
We welcome any coopoeration and contribution. If there is a project requires LightLLM's support, please contact us via email or create a pull request.
47
46
48
-
49
-
1. <details><summary> <b><ahref=https://github.com/LazyAGI/LazyLLM>LazyLLM</a></b>: Easyest and lazyest way for building multi-agent LLMs applications.</summary>
50
-
51
-
Once you have installed `lightllm` and `lazyllm`, and then you can use the following code to build your own chatbot:
52
-
53
-
~~~python
54
-
from lazyllm import TrainableModule, deploy, WebModule
55
-
# Model will be download automatically if you have an internet connection
56
-
m = TrainableModule('internlm2-chat-7b').deploy_method(deploy.lightllm)
57
-
WebModule(m).start().wait()
58
-
~~~
59
-
60
-
Documents: https://lazyllm.readthedocs.io/
61
-
62
-
</details>
63
-
64
47
Projects based on LightLLM or referenced LightLLM components:
RUN pip install -r /lightllm/requirements.txt --no-cache-dir --ignore-installed --extra-index-url https://download.pytorch.org/whl/cu124
40
+
41
+
RUN pip install --no-cache-dir https://github.com/ModelTC/flash-attn-3-build/releases/download/v2.7.4.post1/flash_attn-3.0.0b1-cp39-cp39-linux_x86_64.whl
42
+
43
+
RUN pip install --no-cache-dir nvidia-nccl-cu12==2.25.1 # for allreduce hang issues in multinode H100
44
+
45
+
RUN git clone --recursive https://github.com/deepseek-ai/DeepGEMM.git
46
+
RUN cd DeepGEMM && python setup.py install
47
+
48
+
WORKDIR /root
49
+
RUN git clone https://github.com/deepseek-ai/DeepEP.git
50
+
51
+
# NVSHMEM
52
+
RUN wget https://developer.download.nvidia.com/compute/redist/nvshmem/3.2.5/source/nvshmem_src_3.2.5-1.txz
53
+
RUN tar -xf nvshmem_src_3.2.5-1.txz \
54
+
&& mv nvshmem_src nvshmem
55
+
56
+
WORKDIR /root/nvshmem
57
+
RUN git apply /root/DeepEP/third-party/nvshmem.patch
0 commit comments