create own module proxies for blas/lapack

This commit is contained in:
Radovan Bast
2015-09-19 15:45:42 +02:00
parent c56e9eaa56
commit 9e32dd790d
8 changed files with 54 additions and 14 deletions

View File

@ -128,7 +128,11 @@ def test_fc_omp():
def test_fc_blas():
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"')
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --blas')
def test_fc_lapack():
configure_build_and_exe('fc_lapack', 'python setup.py --fc=gfortran --lapack')
@skip_on_osx
@ -136,10 +140,6 @@ def test_cxx_cblas():
configure_build_and_exe('cxx_cblas', 'python setup.py --cxx=g++ --cblas')
def test_fc_lapack():
configure_build_and_exe('fc_lapack', 'python setup.py --fc=gfortran --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"')
@skip_on_osx
@skip_on_linux
def test_cxx_lapacke():