We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034ae1e commit 9a113f3Copy full SHA for 9a113f3
.github/workflows/conda-package.yml
@@ -270,7 +270,8 @@ jobs:
270
Write-Output "OCL-ICD-Loader was not copied"
271
}
272
# Variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
273
- echo "TBB_DLL_PATH=C:\Miniconda\Library\bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+ $cl_cfg="C:\Miniconda\Library\lib\cl.cfg"
274
+ (Get-Content $cl_cfg) -replace '^CL_CONFIG_TBB_DLL =', 'CL_CONFIG_TBB_DLL_PATH = C:\Miniconda\Library\bin' | Set-Content $cl_cfg
275
276
- name: Smoke test
277
run: |
0 commit comments