X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/febfa21172b9cc827797849be5c0923aa399717f..d531b19a0d1b2931ce8177bacd0124065c68476f:/teshsuite/smpi/CMakeLists.txt diff --git a/teshsuite/smpi/CMakeLists.txt b/teshsuite/smpi/CMakeLists.txt index 4c1f9683b6..34f483c1f9 100644 --- a/teshsuite/smpi/CMakeLists.txt +++ b/teshsuite/smpi/CMakeLists.txt @@ -10,16 +10,18 @@ if(enable_smpi) set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") - + add_executable(gather_coll gather_coll.c) add_executable(allgather_coll allgather_coll.c) + add_executable(allgatherv_coll allgatherv_coll.c) add_executable(alltoall2 alltoall2.c) add_executable(alltoall_basic alltoall_basic.c) - add_executable(alltoall_coll alltoall_coll.c) + add_executable(alltoall_coll alltoall_coll.c) add_executable(alltoallv_coll alltoallv_coll.c) add_executable(allreduce allreduce.c) add_executable(allreduce_coll allreduce_coll.c) add_executable(bcast bcast.c) - add_executable(bcast_coll bcast_coll.c) + add_executable(bcast_coll bcast_coll.c) + add_executable(barrier_coll barrier.c ) add_executable(compute compute.c) add_executable(compute2 compute2.c) add_executable(compute3 compute3.c) @@ -27,6 +29,7 @@ if(enable_smpi) add_executable(scatter scatter.c) add_executable(reduce reduce.c) add_executable(reduce_coll reduce_coll.c) + add_executable(reduce_scatter_coll reduce_scatter_coll.c) add_executable(split split.c) add_executable(smpi_sendrecv sendrecv.c) add_executable(ttest01 ttest01.c) @@ -35,15 +38,18 @@ if(enable_smpi) add_executable(indexed_test indexed_test.c) add_executable(struct_test struct_test.c) - target_link_libraries(allgather_coll simgrid) + target_link_libraries(gather_coll simgrid) + target_link_libraries(allgather_coll simgrid) + target_link_libraries(allgatherv_coll simgrid) target_link_libraries(alltoall2 simgrid) target_link_libraries(alltoall_basic simgrid) - target_link_libraries(alltoall_coll simgrid) + target_link_libraries(alltoall_coll simgrid) target_link_libraries(alltoallv_coll simgrid) target_link_libraries(allreduce simgrid) target_link_libraries(allreduce_coll simgrid) target_link_libraries(bcast simgrid) target_link_libraries(bcast_coll simgrid) + target_link_libraries(barrier_coll simgrid) target_link_libraries(compute simgrid) target_link_libraries(compute2 simgrid) target_link_libraries(compute3 simgrid) @@ -51,6 +57,7 @@ if(enable_smpi) target_link_libraries(scatter simgrid) target_link_libraries(reduce simgrid) target_link_libraries(reduce_coll simgrid) + target_link_libraries(reduce_scatter_coll simgrid) target_link_libraries(split simgrid) target_link_libraries(smpi_sendrecv simgrid) target_link_libraries(ttest01 simgrid) @@ -71,9 +78,14 @@ endif() set(tesh_files ${tesh_files} + ${CMAKE_CURRENT_SOURCE_DIR}/gather_coll.tesh ${CMAKE_CURRENT_SOURCE_DIR}/allgather_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/allgatherv_coll.tesh ${CMAKE_CURRENT_SOURCE_DIR}/allreduce_coll.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/alltoall_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/alltoall_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/alltoallv_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/scatter_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/barrier_coll.tesh ${CMAKE_CURRENT_SOURCE_DIR}/bcast.tesh ${CMAKE_CURRENT_SOURCE_DIR}/bcast_coll.tesh ${CMAKE_CURRENT_SOURCE_DIR}/compute.tesh @@ -82,6 +94,7 @@ set(tesh_files ${CMAKE_CURRENT_SOURCE_DIR}/pt2pt.tesh ${CMAKE_CURRENT_SOURCE_DIR}/reduce.tesh ${CMAKE_CURRENT_SOURCE_DIR}/reduce_coll.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/reduce_scatter_coll.tesh ${CMAKE_CURRENT_SOURCE_DIR}/struct.tesh ${CMAKE_CURRENT_SOURCE_DIR}/vector.tesh PARENT_SCOPE @@ -92,11 +105,15 @@ set(xml_files ) set(examples_src ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/gather_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/allgather_coll.c + ${CMAKE_CURRENT_SOURCE_DIR}/allgatherv_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/allreduce_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoall_coll.c + ${CMAKE_CURRENT_SOURCE_DIR}/alltoallv_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/bcast_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/reduce_coll.c + ${CMAKE_CURRENT_SOURCE_DIR}/reduce_scatter_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/alltoallv_coll.c ${CMAKE_CURRENT_SOURCE_DIR}/get_processor_name.c ${CMAKE_CURRENT_SOURCE_DIR}/pingpong.c