|
1 | | -ARG ONEAPI_VERSION=2025.2.2-0-devel-ubuntu24.04 |
| 1 | +ARG ONEAPI_VERSION=2025.3.3-0-devel-ubuntu24.04 |
2 | 2 |
|
3 | 3 | ## Build Image |
4 | 4 |
|
@@ -33,8 +33,25 @@ RUN mkdir -p /app/full \ |
33 | 33 |
|
34 | 34 | FROM intel/deep-learning-essentials:$ONEAPI_VERSION AS base |
35 | 35 |
|
| 36 | +ARG IGC_VERSION=v2.30.1 |
| 37 | +ARG IGC_VERSION_FULL=2_2.30.1+20950 |
| 38 | +ARG COMPUTE_RUNTIME_VERSION=26.09.37435.1 |
| 39 | +ARG COMPUTE_RUNTIME_VERSION_FULL=26.09.37435.1-0 |
| 40 | +ARG IGDGMM_VERSION=22.9.0 |
| 41 | +RUN mkdir /tmp/neo/ && cd /tmp/neo/ \ |
| 42 | + && wget https://github.com/intel/intel-graphics-compiler/releases/download/$IGC_VERSION/intel-igc-core-${IGC_VERSION_FULL}_amd64.deb \ |
| 43 | + && wget https://github.com/intel/intel-graphics-compiler/releases/download/$IGC_VERSION/intel-igc-opencl-${IGC_VERSION_FULL}_amd64.deb \ |
| 44 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/intel-ocloc-dbgsym_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.ddeb \ |
| 45 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/intel-ocloc_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.deb \ |
| 46 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/intel-opencl-icd-dbgsym_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.ddeb \ |
| 47 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/intel-opencl-icd_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.deb \ |
| 48 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/libigdgmm12_${IGDGMM_VERSION}_amd64.deb \ |
| 49 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/libze-intel-gpu1-dbgsym_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.ddeb \ |
| 50 | + && wget https://github.com/intel/compute-runtime/releases/download/$COMPUTE_RUNTIME_VERSION/libze-intel-gpu1_${COMPUTE_RUNTIME_VERSION_FULL}_amd64.deb \ |
| 51 | + && dpkg --install *.deb |
| 52 | + |
36 | 53 | RUN apt-get update \ |
37 | | - && apt-get install -y libgomp1 curl\ |
| 54 | + && apt-get install -y libgomp1 curl \ |
38 | 55 | && apt autoremove -y \ |
39 | 56 | && apt clean -y \ |
40 | 57 | && rm -rf /tmp/* /var/tmp/* \ |
|
0 commit comments