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 72648de commit f280253Copy full SHA for f280253
.github/workflows/intel-mkl-sys.yml
@@ -70,8 +70,15 @@ jobs:
70
- uses: actions/checkout@v1
71
- name: Get MKL using NuGet
72
run: |
73
- nuget install intelmkl.devel.cluster.win-x64
74
- nuget install intelmkl.static.cluster.win-x64
+ nuget install intelmkl.devel.cluster.win-x64 -Version 2022.0.3.171
+ nuget install intelmkl.static.cluster.win-x64 -Version 2022.0.3.171
75
+ - name: Add DLL runtime path
76
+ run: |
77
+ echo "${{ github.workspace }}/intelmkl.redist.win-x64.2022.0.3.171/runtimes/win-x64/native" >> $Env:GITHUB_PATH
78
+ echo "${{ github.workspace }}/intelopenmp.redist.win.2022.0.0.3663/runtimes/win-x64/native" >> $Env:GITHUB_PATH
79
+ - name: Check PATH
80
+ run: echo $Env:PATH
81
+
82
- uses: actions-rs/cargo@v1
83
with:
84
command: test
0 commit comments