Conversation
|
The workflow with nightly tests run is passed: |
|
Deleted rendered PR docs from intelpython.github.com/dpctl, latest should be updated shortly. 🤞 |
|
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_173 ran successfully. |
|
@antonwolfy |
|
In dpnp we removed the separate step with installing Linking intel-opencl-rt-2025.1.0-intel_972
The process cannot access the file because it is being used by another process.
The system cannot find the file C:\Users\RUNNER~1\AppData\Local\Temp\__conda_tmp_17737.txt.
Failed to run 'conda activate "C:\\Users\\runneradmin\\miniconda3\\envs\\test"'.
C:\Users\RUNNER~1\AppData\Local\Temp\__conda_tmp_17737.txtIt's hard to say what exactly was going wrong there, but the script logic looks faulty in any case, because it creates an empty config: setlocal EnableDelayedExpansion
set "cl_cfg_orig=%PREFIX%\Library\lib\cl.cfg"
set "cl_cfg_temp=%PREFIX%\Library\lib\cl.cfg.temp"
set "lib_bin=%PREFIX%\Library\bin"
set "PATH=%PATH%;C:\Windows\System32"
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell -Command "(gc '%cl_cfg_orig%') -replace 'CL_CONFIG_TBB_DLL_PATH =.*', 'CL_CONFIG_TBB_DLL_PATH = %lib_bin%' | Out-File -Encoding ASCII -FilePath '%cl_cfg_temp%'"
move /Y "%cl_cfg_temp%" "%cl_cfg_orig%"because there is no In any case the |
The location of
cl.cfgfile created by installingintel-opencl-rtconda package has been changed few releases back from%CONDA_PREFIX%\Library\lib\cl.cfgto%CONDA_PREFIX%\Library\bin\cl.cfg.The file is still created at
Library\lib\cl.cfgpath byintel-opencl-rt-post-link.batscript but with empty content.The PR updates public CI to rely on correct path towards
cl.cfgconfiguration file.The issue with
intel-opencl-rt-post-link.batscript has to be updated by a separate PR in the compiler repo.