mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
526 B
18 lines
526 B
FROM hpcaitech/cuda-conda:11.3
|
|
|
|
# install torch
|
|
RUN conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
|
|
|
|
# install apex
|
|
RUN git clone https://github.com/NVIDIA/apex && \
|
|
cd apex && \
|
|
pip install -v --disable-pip-version-check --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./
|
|
|
|
# install colossalai
|
|
RUN git clone https://github.com/hpcaitech/ColossalAI.git \
|
|
&& cd ./ColossalAI \
|
|
&& pip install -v --no-cache-dir .
|
|
|
|
# install titans
|
|
RUN pip install --no-cache-dir titans
|