forked from cpeng-pz/PySCIPOpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- not using any HSL, as suggested in ds4dm#5 - not sure whether the linked libraries are correct, `ldd` has some "not found"
- Loading branch information
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# TODO: get any 3rd party code? | ||
# get some 3rd party code | ||
cd ThirdParty/Metis && ./get.Metis && cd ../../ | ||
cd ThirdParty/Mumps && ./get.Mumps && cd ../../ | ||
|
||
./configure --prefix=${PREFIX} | ||
# BLAS from mkl? | ||
# LAPACK from mkl? | ||
# HSL? | ||
# other libraries? | ||
./configure --prefix=${PREFIX} \ | ||
--with-blas="-L${PREFIX} -lmkl_intel_ilp64 -lmkl_core -lmkl_sequential -lpthread -lm -ldl" \ | ||
--with-lapack="-L${PREFIX} -lmkl_intel_ilp64 -lmkl_core -lmkl_sequential -lpthread -lm -ldl" | ||
# no HSL! | ||
|
||
make | ||
make install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,8 @@ build: | |
|
||
requirements: | ||
build: | ||
- mkl | ||
- gcc # includes fortran | ||
- mkl # for BLAS, Lapack | ||
run: | ||
- mkl | ||
|
||
|