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
{{ message }}
This repository was archived by the owner on Oct 19, 2025. It is now read-only.
# Sets versions of Level-Zero, OpenCL and memory allocator chosen.
77
77
ARG ICD_VER=23.17.26241.33-647~22.04
78
78
ARG LEVEL_ZERO_GPU_VER=1.3.26241.33-647~22.04
79
-
ARG LEVEL_ZERO_VER=1.11.0-647~22.04
80
-
ARG LEVEL_ZERO_DEV_VER=1.11.0-647~22.04
81
79
ARG ALLOCATOR=tcmalloc
82
80
ENV ALLOCATOR=${ALLOCATOR}
83
81
ARG ALLOCATOR_PACKAGE=libgoogle-perftools-dev
@@ -98,13 +96,13 @@ RUN apt-get update && \
98
96
# Getting the latest versions of Intel's Compute Runtime and associated packages on Github and installing it will update everything we installed before.
99
97
RUN mkdir neo
100
98
WORKDIR /neo
101
-
RUN wget --progress=dot:giga https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.16695.4/intel-igc-core_1.0.16695.4_amd64.deb && \
@@ -123,7 +121,7 @@ RUN add-apt-repository ppa:deadsnakes/ppa && \
123
121
124
122
# Update pip
125
123
# hadolint ignore=DL3013
126
-
RUNpip --no-cache-dir install --upgrade \
124
+
RUNpython3 -m pip install -U \
127
125
pip \
128
126
setuptools
129
127
@@ -176,10 +174,10 @@ ENV ZES_ENABLE_SYSMAN=1
176
174
ENV NEOReadDebugKeys=1
177
175
ENV ClDeviceGlobalMemSizeAvailablePercent=100
178
176
179
-
# Enable double precision emulation just in case.
177
+
# Enable double precision emulation. Turned off by default to enable attention slicing to address the 4GB single allocation limit with Intel Xe GPUs and lower.
180
178
# See https://github.com/intel/compute-runtime/blob/master/opencl/doc/FAQ.md#feature-double-precision-emulation-fp64
181
-
ENV OverrideDefaultFP64Settings=1
182
-
ENV IGC_EnableDPEmulation=1
179
+
#ENV OverrideDefaultFP64Settings=1
180
+
#ENV IGC_EnableDPEmulation=1
183
181
184
182
# Enable SYCL variables for cache reuse and single threaded mode.
185
183
# See https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.md
0 commit comments