Skip to content

Commit 3f8977c

Browse files
Update XPU Windows script
1 parent 2112d47 commit 3f8977c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/scripts/build-xpu-windows.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
set INTEL_DLE_URL=https://registrationcenter-download.intel.com/akdlm/IRC_NAS/75d4eb97-914a-4a95-852c-7b9733d80f74/intel-deep-learning-essentials-2025.1.3.8_offline.exe
33

44
curl -o intel-dle-installer.exe %INTEL_DLE_URL%
5-
start /wait "Intel DLE Install" intel-dle-installer.exe --eula=accept --silent
5+
start /wait "Intel DLE Install" intel-dle-installer.exe -r -a --eula=accept -p=NEED_VS2022_INTEGRATION=0 > intel_dle_log.txt 2>&1
6+
type intel_dle_log.txt
7+
68
if ERRORLEVEL 1 (
79
echo Failed to install Intel Deep Learning Essentials
810
exit /b 1
911
)
1012

11-
call %ProgramFiles(x86)%\Intel\oneAPI\setvars.bat
13+
call "%ProgramFiles(x86)%\Intel\oneAPI\setvars.bat"
1214
if ERRORLEVEL 1 (
1315
echo Failed to setup environment
1416
exit /b 1

0 commit comments

Comments
 (0)