Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled
104 lines
3.8 KiB
Docker
104 lines
3.8 KiB
Docker
FROM intel/deep-learning-essentials:2025.1.3-0-devel-ubuntu22.04 AS base
|
|
LABEL maintainer="Hugging Face"
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
ARG PYTHON_VER=3.12
|
|
ENV TORCH_DEVICE_BACKEND_AUTOLOAD=0
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y software-properties-common && \
|
|
add-apt-repository -y ppa:deadsnakes/ppa && \
|
|
apt-get update && \
|
|
apt-get install -y python$PYTHON_VER python$PYTHON_VER-dev python3-pip && \
|
|
ln -sf /usr/bin/python$PYTHON_VER /usr/bin/python3 && \
|
|
ln -sf /usr/bin/python3 /usr/bin/python && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install \
|
|
apt-utils \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
git-lfs \
|
|
vim \
|
|
numactl \
|
|
gnupg2 \
|
|
gpg-agent \
|
|
zlib1g-dev \
|
|
rsync \
|
|
sudo \
|
|
libnl-genl-3-200 \
|
|
unzip \
|
|
ffmpeg \
|
|
tesseract-ocr \
|
|
espeak-ng \
|
|
wget \
|
|
ncurses-term && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
linux-headers-$(uname -r) linux-modules-extra-$(uname -r) \
|
|
flex bison \
|
|
intel-fw-gpu intel-i915-dkms xpu-smi intel-ocloc clinfo\
|
|
intel-opencl-icd libze-intel-gpu1 libze1 \
|
|
intel-media-va-driver-non-free libmfx-gen1 libvpl2 \
|
|
libegl-mesa0 libegl1 libegl1-mesa-dev libgbm1 libgl1-mesa-dev libgl1-mesa-dri \
|
|
libglapi-mesa libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
|
|
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo hwinfo \
|
|
libigc-dev intel-igc-cm libigdfcl-dev libigfxcmrt-dev libze-dev && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Use virtual env because Ubuntu-24 does not allowed pip on original python
|
|
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
ENV VIRTUAL_ENV="/opt/venv"
|
|
ENV UV_PYTHON_INSTALL_DIR=/opt/uv/python
|
|
RUN uv venv --python ${PYTHON_VER} --seed ${VIRTUAL_ENV}
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
RUN pip install --upgrade pip wheel
|
|
RUN pip install triton==3.4.0
|
|
|
|
RUN pip install torch==2.8.0+xpu torchvision==0.23.0+xpu torchaudio==2.8.0+xpu --index-url https://download.pytorch.org/whl/xpu --no-cache-dir
|
|
|
|
RUN pip install torchcodec torchdata --no-cache-dir
|
|
|
|
RUN pip install evaluate pyctcdecode pytesseract decord galore-torch fire scipy scikit-learn sentencepiece sacremoses nltk rouge_score librosa soundfile g2p_en mpi4py requests_mock
|
|
RUN pip install pretty_midi essentia resampy Levenshtein av sacrebleu phonemizer invisible_watermark schedulefree setuptools
|
|
RUN pip install gptqmodel --no-build-isolation
|
|
RUN pip install gguf hqq compressed_tensors deepspeed torchao onnx auto_round
|
|
RUN pip install hf_transfer huggingface-hub hf-doc-builder datasets optimum-quanto timm transformers accelerate optimum peft diffusers trl kernels
|
|
|
|
# install liger-kernel
|
|
RUN pip install git+https://github.com/linkedin/Liger-Kernel.git --extra-index-url https://download.pytorch.org/whl/test/xpu
|
|
|
|
# install mergekit
|
|
RUN pip install --break-system-packages git+https://github.com/arcee-ai/mergekit.git@v0.1.3
|
|
|
|
# install bitsandbytes
|
|
RUN pip install git+https://github.com/bitsandbytes-foundation/bitsandbytes.git
|
|
|
|
ENV OCL_ICD_VENDORS=/etc/OpenCL/vendors
|
|
ENV FI_PROVIDER_PATH=${I_MPI_ROOT}/lib/libfabric/prov:/usr/lib/x86_64-linux-gnu/libfabric
|
|
ENV CCL_ROOT=/usr/local
|
|
ENV CCL_ATL_TRANSPORT=ofi
|
|
ENV I_MPI_ROOT=/usr/local
|
|
ENV CLASSPATH=${I_MPI_ROOT}/lib/mpi.jar
|
|
ENV PATH=${I_MPI_ROOT}/bin/libfabric:${PATH}
|
|
ENV LD_LIBRARY_PATH=${I_MPI_ROOT}/lib/libfabric:${LD_LIBRARY_PATH}
|
|
|
|
RUN touch /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
RUN echo "#!/bin/bash" >> /entrypoint.sh
|
|
RUN echo "source /opt/intel/oneapi/setvars.sh --force && /bin/bash" >> /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|