Skip to content

Commit c24cebf

Browse files
authored
Merge pull request #94 from rust-math/windows-dll-search
Support `mkl-dynamic-*-*` cases for Windows
2 parents 2b2b25c + 2eaf013 commit c24cebf

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/intel-mkl-sys.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,21 @@ jobs:
6161
- mkl-static-lp64-seq
6262
- mkl-static-ilp64-iomp
6363
- mkl-static-ilp64-seq
64+
- mkl-dynamic-lp64-iomp
65+
- mkl-dynamic-lp64-seq
66+
- mkl-dynamic-ilp64-iomp
67+
- mkl-dynamic-ilp64-seq
6468
runs-on: windows-2022
6569
steps:
6670
- uses: actions/checkout@v1
6771
- name: Get MKL using NuGet
6872
run: |
69-
nuget install intelmkl.devel.cluster.win-x64
70-
nuget install intelmkl.static.cluster.win-x64
73+
nuget install intelmkl.devel.cluster.win-x64 -Version 2022.0.3.171
74+
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
7179
- uses: actions-rs/cargo@v1
7280
with:
7381
command: test

0 commit comments

Comments
 (0)