add test for accelerate framework

This commit is contained in:
Radovan Bast
2015-09-18 10:44:39 +02:00
parent d4596c6f95
commit c5057f8aee
8 changed files with 146 additions and 18 deletions

View File

@ -139,6 +139,7 @@ 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\'"')
@skip_on_osx
def test_cxx_cblas():
configure_build_and_exe('cxx_cblas', 'python setup.py --cxx=g++ --cblas')
@ -147,10 +148,16 @@ 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
def test_cxx_lapacke():
configure_build_and_exe('cxx_lapacke', 'python setup.py --cxx=g++ --lapacke --cblas')
@skip_on_linux
def test_cxx_accelerate():
configure_build_and_exe('cxx_accelerate', 'python setup.py --cxx=g++ --accelerate')
def test_python_interpreter():
configure_build_and_exe('python_interpreter', 'python setup.py --cxx=g++')