diff --git a/CMakeLists.txt b/CMakeLists.txt index 0388169079074b407e3be786113d098536b5f911..cd0ad071cc8e6f4ea8e354f6a985221a420a3c0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,7 @@ set( SPM_VERSION "${SPM_VERSION_MAJOR}.${SPM_VERSION_MINOR}.${SPM_VERSION_MICRO} # Define precision supported by MAGMA_MORSE # ----------------------------------------- set( RP_SPM_DICTIONNARY ${MORSE_CMAKE_MODULE_PATH}/precision_generator/subs.py ) -set( RP_SPM_PRECISIONS "s;d;c;z" ) +set( RP_SPM_PRECISIONS "p;s;d;c;z" ) include(RulesPrecisions) ### System parameter detection diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1cd2d88aee94bf5d87e0226f97e461578e0387ec..ff6480bc2b82ecebfa5ae8a3183ed688a3d343b3 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -61,13 +61,13 @@ set( SPM_DOF_TESTS # Laplacian foreach(example ${SPM_TESTS} ${SPM_DOF_TESTS} ) - foreach(arithm ${PASTIX_PRECISIONS} ) + foreach(arithm ${RP_SPM_PRECISIONS} ) add_test(test_lap_${arithm}_${example} ./${example} --lap ${arithm}:10:10:10) endforeach() endforeach() # RSA -if (PASTIX_WITH_FORTRAN) +if (SPM_WITH_FORTRAN) foreach(example ${SPM_TESTS} ) add_test(test_rsa_${example} ./${example} --rsa ${CMAKE_SOURCE_DIR}/tests/matrix/small.rsa) endforeach()