File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,13 @@ steps:
17
17
python -m pip install urllib3
18
18
$target = $(python tools/openblas_support.py)
19
19
mkdir openblas
20
- echo Copying $target to openblas
21
<
8000
code> - cp $target openblas
22
- echo "##vso[task.setvariable variable=OPENBLAS]$pwd\openblas"
20
+ echo Copying $target to openblas/openblas$env:OPENBLAS_SUFFIX.a
21
+ cp $target openblas/openblas$env:OPENBLAS_SUFFIX.a
22
+ If ( Test-Path env:NPY_USE_BLAS_ILP64 ){
23
+ echo "##vso[task.setvariable variable=OPENBLAS64_]$pwd\openblas"
24
+ } else {
25
+ echo "##vso[task.setvariable variable=OPENBLAS]$pwd\openblas"
26
+ }
23
27
displayName : ' Download / Install OpenBLAS'
24
28
25
29
- powershell : |
36
40
refreshenv
37
41
}
38
42
python -c "from tools import openblas_support; openblas_support.make_init('numpy')"
39
- pip wheel -v -v -v --wheel-dir=dist .
43
+ pip wheel -v -v -v --no-build-isolation --no-use-pep517 -- wheel-dir=dist .
40
44
41
45
ls dist -r | Foreach-Object {
42
46
pip install $_.FullName
You can’t perform that action at this time.
0 commit comments