Skip to content

Commit dc14d64

Browse files
authored
DLE 2025.1.1 (#4154)
Fixes #4151. --------- Signed-off-by: Pavel Chekin <[email protected]>
1 parent 80bbaf8 commit dc14d64

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.github/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Intel® XPU Backend for Triton\* is a out of tree backend module for [Triton](ht
1818
* Latest [Long Term Support (LTS) Release](https://dgpu-docs.intel.com/driver/installation.html)
1919
* Latest [Rolling Release](https://dgpu-docs.intel.com/driver/installation-rolling.html)
2020
* Toolchain:
21-
* [Intel® Deep Learning Essentials 2025.0.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-lin=offline&dl-essentials-os=linux)
21+
* [Intel® Deep Learning Essentials 2025.1.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-lin=offline&dl-essentials-os=linux)
2222

2323
Note that Intel® XPU Backend for Triton\* is not compatible with Intel® Extension for PyTorch\* and Intel® oneAPI Base Toolkit\*.
2424

@@ -29,7 +29,7 @@ See also: [experimental support for Windows](WINDOWS.md).
2929
## Prerequisites
3030

3131
1. Latest [Rolling Release](https://dgpu-docs.intel.com/driver/installation-rolling.html) or [Long Term Support Release](https://dgpu-docs.intel.com/driver/installation.html) of GPU driver
32-
2. [Intel® Deep Learning Essentials 2025.0.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-lin=offline&dl-essentials-os=linux)
32+
2. [Intel® Deep Learning Essentials 2025.1.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-lin=offline&dl-essentials-os=linux)
3333

3434
## Install PyTorch and Triton from nightly wheels
3535

.github/WINDOWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Install Microsoft Visual Studio 2022 and make sure the following [components](ht
3939

4040
### Intel® Deep Learning Essentials
4141

42-
Install [Intel® Deep Learning Essentials 2025.0.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-essentials-os=windows&dl-win=offline).
42+
Install [Intel® Deep Learning Essentials 2025.1.1](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=dl-essentials&dl-essentials-os=windows&dl-win=offline).
4343
By default, it is installed to `C:\Program Files (x86)\Intel\oneAPI`.
4444

4545
### Chocolatey

.github/actions/setup-pytorch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ runs:
126126
# CMake Error at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required)
127127
pip install 'cmake<4.0.0'
128128
pip install -r requirements.txt
129-
USE_XCCL=1 USE_STATIC_MKL=1 CFLAGS="-Wno-error=maybe-uninitialized" python setup.py bdist_wheel 2>&1 | grep -v \
129+
USE_KINETO=0 USE_XCCL=1 USE_STATIC_MKL=1 CFLAGS="-Wno-error=maybe-uninitialized" python setup.py bdist_wheel 2>&1 | grep -v \
130130
"Double arithmetic operation is not supported on this platform with FP64 conversion emulation mode (poison FP64 kernels is enabled)." | grep -v '^$'
131131
132132
- name: Install PyTorch (built from source)

.github/pins/pytorch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dd766e1dc51d8dc69a2e27e11575814be3629eae
1+
aca2c99a6528349bb67481310c56a9b08f39934b

.github/workflows/build-test-reusable.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ jobs:
118118
mode: ${{ inputs.pytorch_mode }}
119119

120120
- name: Build Proton with XPU support
121-
if: inputs.driver_version == 'rolling' && inputs.device == 'max1100'
121+
# FIXME: re-enable Proton
122+
if: false && inputs.driver_version == 'rolling' && inputs.device == 'max1100'
122123
run: |
123124
echo TRITON_BUILD_PROTON_XPU=1 | tee -a $GITHUB_ENV
124125
@@ -273,7 +274,8 @@ jobs:
273274
echo "TRITON_TEST_CMD=${{ needs.build.outputs.test-triton-command }}" | tee -a $GITHUB_ENV
274275
275276
- name: Run Proton tests
276-
if: matrix.suite == 'rest' && inputs.driver_version == 'rolling' && inputs.device == 'max1100'
277+
# FIXME: re-enable Proton
278+
if: false && matrix.suite == 'rest' && inputs.driver_version == 'rolling' && inputs.device == 'max1100'
277279
run: |
278280
cd third_party/proton/test
279281
pytest test_api.py test_lib.py test_profile.py test_viewer.py test_record.py -s -v

scripts/install-pytorch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ function build_pytorch {
199199
pip install 'cmake<4.0.0'
200200
pip install -r requirements.txt
201201
pip install cmake ninja
202-
USE_XCCL=1 USE_STATIC_MKL=1 python setup.py bdist_wheel
202+
USE_KINETO=0 USE_XCCL=1 USE_STATIC_MKL=1 python setup.py bdist_wheel
203203
}
204204

205205
function install_pytorch {

0 commit comments

Comments
 (0)