X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/57a4ce6a28d437d6f1b931b9732d9ed584e252cd..29f11d3b5a25895bbd8dcaccc57e7d3bc2fa8d83:/teshsuite/smpi/mpich3-test/coll/CMakeLists.txt diff --git a/teshsuite/smpi/mpich3-test/coll/CMakeLists.txt b/teshsuite/smpi/mpich3-test/coll/CMakeLists.txt index 42ab29613c..78a35e75f5 100644 --- a/teshsuite/smpi/mpich3-test/coll/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/coll/CMakeLists.txt @@ -6,12 +6,12 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff") endif() - set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") include_directories(BEFORE "${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") add_executable(allgather2 allgather2.c) add_executable(allgather3 allgather3.c) + add_executable(allgather_struct allgather_struct.c) add_executable(allgatherv2 allgatherv2.c) add_executable(allgatherv3 allgatherv3.c) if(HAVE_PRIVATIZATION) @@ -24,7 +24,11 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) add_executable(allred4 allred4.c) add_executable(allred5 allred5.c) add_executable(allred6 allred6.c) - add_executable(allred allred.c) + if(HAVE_PRIVATIZATION) + add_executable(allred allred.c) + else() + add_executable(allred allred_manual.c) + endif() add_executable(allredmany allredmany.c) add_executable(alltoall1 alltoall1.c) add_executable(alltoallv0 alltoallv0.c) @@ -32,8 +36,9 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) # add_executable(alltoallw1 alltoallw1.c) # add_executable(alltoallw2 alltoallw2.c) # add_executable(alltoallw_zeros alltoallw_zeros.c) - add_executable(bcast2 bcast2.c) - add_executable(bcast3 bcast3.c) + add_executable(bcast_full bcast.c) + add_executable(bcast_min_datatypes bcast.c) + add_executable(bcast_comm_world bcast.c) add_executable(bcasttest bcasttest.c) add_executable(bcastzerotype bcastzerotype.c) add_executable(coll10 coll10.c) @@ -51,7 +56,7 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) add_executable(exscan2 exscan2.c) add_executable(exscan exscan.c) add_executable(gather2 gather2.c) -# add_executable(gather2_save gather2_save.c) + add_executable(gather_big gather_big.c) add_executable(gather gather.c) # add_executable(iallred iallred.c) # add_executable(ibarrier ibarrier.c) @@ -71,7 +76,6 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) add_executable(longuser longuser.c) # add_executable(nonblocking2 nonblocking2.c) # add_executable(nonblocking3 nonblocking3.c) -# add_executable(nonblocking4 nonblocking4.c) # add_executable(nonblocking nonblocking.c) # add_executable(opband opband.c) # add_executable(opbor opbor.c) @@ -107,6 +111,7 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) target_link_libraries(allgather2 simgrid mtest_c) target_link_libraries(allgather3 simgrid mtest_c) + target_link_libraries(allgather_struct simgrid mtest_c) target_link_libraries(allgatherv2 simgrid mtest_c) target_link_libraries(allgatherv3 simgrid mtest_c) target_link_libraries(allgatherv4 simgrid mtest_c) @@ -123,8 +128,9 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) # target_link_libraries(alltoallw1 simgrid mtest_c) # target_link_libraries(alltoallw2 simgrid mtest_c) # target_link_libraries(alltoallw_zeros simgrid mtest_c) - target_link_libraries(bcast2 simgrid mtest_c) - target_link_libraries(bcast3 simgrid mtest_c) + target_link_libraries(bcast_full simgrid mtest_c) + target_link_libraries(bcast_min_datatypes simgrid mtest_c) + target_link_libraries(bcast_comm_world simgrid mtest_c) target_link_libraries(bcasttest simgrid mtest_c) target_link_libraries(bcastzerotype simgrid mtest_c) target_link_libraries(coll10 simgrid mtest_c) @@ -142,7 +148,7 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) target_link_libraries(exscan2 simgrid mtest_c) target_link_libraries(exscan simgrid mtest_c) target_link_libraries(gather2 simgrid mtest_c) -# target_link_libraries(gather2_save simgrid mtest_c) + target_link_libraries(gather_big simgrid mtest_c) target_link_libraries(gather simgrid mtest_c) # target_link_libraries(iallred simgrid mtest_c) # target_link_libraries(ibarrier simgrid mtest_c) @@ -162,7 +168,6 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) target_link_libraries(longuser simgrid mtest_c) # target_link_libraries(nonblocking2 simgrid mtest_c) # target_link_libraries(nonblocking3 simgrid mtest_c) -# target_link_libraries(nonblocking4 simgrid mtest_c) # target_link_libraries(nonblocking simgrid mtest_c) # target_link_libraries(opband simgrid mtest_c) # target_link_libraries(opbor simgrid mtest_c) @@ -197,19 +202,49 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite) # target_link_libraries(uoplong simgrid mtest_c) set_target_properties(allred PROPERTIES COMPILE_FLAGS "-O0" LINK_FLAGS "-O0") + set_target_properties(bcast_min_datatypes PROPERTIES COMPILE_FLAGS "-DBCAST_MIN_DATATYPES_ONLY" LINK_FLAGS "-DBCAST_MIN_DATATYPES_ONLY") + set_target_properties(bcast_comm_world PROPERTIES COMPILE_FLAGS "-DBCAST_COMM_WORLD_ONLY" LINK_FLAGS "-DBCAST_COMM_WORLD_ONLY") + + # These tests take 5 to 15 seconds to run, so we don't want to run them several times. + # But at the same time, we'd like to check if they work for all factories and all privatization algorithm + # Thus the current matrix + + MACRO(ADD_MPICH3_COLL SELECTOR FACTORY PRIVATIZATION) + set(NAME "test-smpi-mpich3-coll-${SELECTOR}") + set(ARGS "-execarg=--cfg=smpi/coll-selector:${SELECTOR}" ${ARGN}) + if(NOT "${PRIVATIZATION}" STREQUAL "" AND HAVE_PRIVATIZATION) + set(NAME "${NAME}-${PRIVATIZATION}") + set(ARGS ${ARGS} "-execarg=--cfg=smpi/privatization:${PRIVATIZATION}") + endif() + string(TOUPPER "HAVE_${FACTORY}_CONTEXTS" HAVE_FACTORY) + if(NOT "${FACTORY}" STREQUAL "" AND ${HAVE_FACTORY}) + set(NAME "${NAME}-${FACTORY}") + set(ARGS ${ARGS} "-execarg=--cfg=contexts/factory:${FACTORY}") + endif() + ADD_TEST(${NAME} ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}/teshsuite/smpi/mpich3-test/coll ${PERL_EXECUTABLE} ${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/runtests "-wrapper=${TESH_WRAPPER}" -mpiexec=${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun -srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/coll -tests=testlist ${ARGS}) + SET_TESTS_PROPERTIES(${NAME} PROPERTIES PASS_REGULAR_EXPRESSION "tests passed!") + ENDMACRO() + + # Test default selector; default factory; default privatization + ADD_MPICH3_COLL(default "" "") + + # Test OMPI selector: thread factory, dlopen privatization + ADD_MPICH3_COLL(ompi "thread" "dlopen" -execarg=--cfg=smpi/bcast:binomial_tree) + + # Test MPICH selector: boost factory, dlopen privatization + ADD_MPICH3_COLL(mpich "boost" "dlopen") + + # Test MVAPICH2 selector: ucontext factory, mmap privatization + ADD_MPICH3_COLL(mvapich2 "ucontext" "mmap") + + # Test IMPI selector: raw factory, mmap privatization + ADD_MPICH3_COLL(impi "raw" "mmap") + endif() -set(tesh_files - ${tesh_files} - PARENT_SCOPE - ) -set(xml_files - ${xml_files} - PARENT_SCOPE - ) -set(examples_src - ${examples_src} +set(examples_src ${examples_src} ${CMAKE_CURRENT_SOURCE_DIR}/allgather2.c + ${CMAKE_CURRENT_SOURCE_DIR}/allgather_struct.c ${CMAKE_CURRENT_SOURCE_DIR}/allgather3.c ${CMAKE_CURRENT_SOURCE_DIR}/allgatherv2.c ${CMAKE_CURRENT_SOURCE_DIR}/allgatherv3.c @@ -221,6 +256,7 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/allred5.c ${CMAKE_CURRENT_SOURCE_DIR}/allred6.c ${CMAKE_CURRENT_SOURCE_DIR}/allred.c + ${CMAKE_CURRENT_SOURCE_DIR}/allred_manual.c ${CMAKE_CURRENT_SOURCE_DIR}/allredmany.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoall1.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoallv0.c @@ -228,8 +264,7 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/alltoallw1.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoallw2.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoallw_zeros.c - ${CMAKE_CURRENT_SOURCE_DIR}/bcast2.c - ${CMAKE_CURRENT_SOURCE_DIR}/bcast3.c + ${CMAKE_CURRENT_SOURCE_DIR}/bcast.c ${CMAKE_CURRENT_SOURCE_DIR}/bcasttest.c ${CMAKE_CURRENT_SOURCE_DIR}/bcastzerotype.c ${CMAKE_CURRENT_SOURCE_DIR}/coll10.c @@ -247,7 +282,7 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/exscan2.c ${CMAKE_CURRENT_SOURCE_DIR}/exscan.c ${CMAKE_CURRENT_SOURCE_DIR}/gather2.c - ${CMAKE_CURRENT_SOURCE_DIR}/gather2_save.c + ${CMAKE_CURRENT_SOURCE_DIR}/gather_big.c ${CMAKE_CURRENT_SOURCE_DIR}/gather.c ${CMAKE_CURRENT_SOURCE_DIR}/iallred.c ${CMAKE_CURRENT_SOURCE_DIR}/ibarrier.c @@ -268,7 +303,6 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/nonblocking2.c ${CMAKE_CURRENT_SOURCE_DIR}/nonblocking3.c ${CMAKE_CURRENT_SOURCE_DIR}/nonblocking.c - ${CMAKE_CURRENT_SOURCE_DIR}/nonblocking4.c ${CMAKE_CURRENT_SOURCE_DIR}/opband.c ${CMAKE_CURRENT_SOURCE_DIR}/opbor.c ${CMAKE_CURRENT_SOURCE_DIR}/opbxor.c @@ -300,14 +334,5 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/scattern.c ${CMAKE_CURRENT_SOURCE_DIR}/scatterv.c ${CMAKE_CURRENT_SOURCE_DIR}/uoplong.c - PARENT_SCOPE - ) -set(bin_files - ${bin_files} - PARENT_SCOPE - ) -set(txt_files - ${txt_files} - ${CMAKE_CURRENT_SOURCE_DIR}/testlist - PARENT_SCOPE - ) + PARENT_SCOPE) +set(txt_files ${txt_files} ${CMAKE_CURRENT_SOURCE_DIR}/testlist PARENT_SCOPE)