Files
rocm-systems/projects/rocprofiler-systems/examples/mpi/CMakeLists.txt
T
Kian Cossettini 63713f01e0 [rocprofiler-systems] Add Fortran MPI CTests (#1172)
* Add MPI CTests (use gfortran)

* Add proper regex check

* Skip Runtime-Instrument due to incompatibility with MPI

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Sajina Kandy <sputhala@amd.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-11-27 10:32:09 -05:00

154 lines
4.7 KiB
CMake

cmake_minimum_required(VERSION 3.21 FATAL_ERROR)
project(rocprofiler-systems-mpi-examples LANGUAGES C CXX)
find_program(GFORTRAN_EXECUTABLE NAMES gfortran)
if(GFORTRAN_EXECUTABLE)
enable_language(Fortran)
set(ENABLE_FORTRAN_MPI_CTESTS
TRUE
CACHE BOOL
"Internal variable used by rocprofiler-systems"
)
execute_process(
COMMAND ${GFORTRAN_EXECUTABLE} --version
OUTPUT_VARIABLE GFORTRAN_VERSION_OUTPUT
RESULT_VARIABLE GFORTRAN_VERSION_RESULT
ERROR_VARIABLE GFORTRAN_VERSION_ERROR
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if(GFORTRAN_VERSION_RESULT EQUAL 0)
string(
REGEX MATCH
"GNU Fortran \\([^)]*\\) ([0-9]+\\.[0-9]+\\.[0-9]+)"
GFORTRAN_VERSION_MATCH
"${GFORTRAN_VERSION_OUTPUT}"
)
set(GFORTRAN_VERSION ${CMAKE_MATCH_1})
rocprofiler_systems_message(STATUS "Detected gfortran version: ${GFORTRAN_VERSION}")
else()
rocprofiler_systems_message(FATAL_ERROR "Failed to get gfortran version from ${GFORTRAN_EXECUTABLE}: ${GFORTRAN_VERSION_ERROR}")
endif()
else()
set(ENABLE_FORTRAN_MPI_CTESTS
FALSE
CACHE BOOL
"Internal variable used by rocprofiler-systems"
)
rocprofiler_systems_message(WARNING "gfortran was not found, disabling fortran MPI tests...")
endif()
if(ROCPROFSYS_DISABLE_EXAMPLES)
get_filename_component(_DIR ${CMAKE_CURRENT_LIST_DIR} NAME)
if(
${PROJECT_NAME} IN_LIST ROCPROFSYS_DISABLE_EXAMPLES
OR ${_DIR} IN_LIST ROCPROFSYS_DISABLE_EXAMPLES
)
return()
endif()
endif()
find_package(MPI)
if(NOT MPI_FOUND)
if("${CMAKE_PROJECT_NAME}" STREQUAL "rocprofiler-systems" AND "$ENV{ROCPROFSYS_CI}")
set(_MSG_TYPE STATUS) # don't generate warnings during CI
else()
set(_MSG_TYPE AUTHOR_WARNING)
endif()
message(
${_MSG_TYPE}
"MPI could not be found. Cannot build rocprofiler-systems-mpi target"
)
return()
endif()
find_package(Threads REQUIRED)
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
add_library(mpi-c-interface-library INTERFACE)
target_link_libraries(
mpi-c-interface-library
INTERFACE
Threads::Threads
MPI::MPI_C
$<TARGET_NAME_IF_EXISTS:rocprofiler-systems::rocprofiler-systems-compile-options>
)
target_compile_options(mpi-c-interface-library INTERFACE -Wno-double-promotion)
add_executable(mpi-allgather allgather.c)
target_link_libraries(mpi-allgather PRIVATE mpi-c-interface-library)
add_executable(mpi-bcast bcast.c)
target_link_libraries(mpi-bcast PRIVATE mpi-c-interface-library)
add_executable(mpi-all2all all2all.c)
target_link_libraries(mpi-all2all PRIVATE mpi-c-interface-library)
add_executable(mpi-reduce reduce.c)
target_link_libraries(mpi-reduce PRIVATE mpi-c-interface-library)
add_executable(mpi-scatter-gather scatter-gather.c)
target_link_libraries(mpi-scatter-gather PRIVATE mpi-c-interface-library)
add_executable(mpi-send-recv send-recv.c)
target_link_libraries(mpi-send-recv PRIVATE mpi-c-interface-library)
add_executable(mpi-allreduce allreduce.c)
target_link_libraries(mpi-allreduce PRIVATE mpi-c-interface-library m)
if(ENABLE_FORTRAN_MPI_CTESTS)
if(NOT MPI_Fortran_FOUND)
rocprofiler_systems_message(FATAL_ERROR "MPI Fortran support not found. Ensure MPI was configured with Fortran support.")
endif()
add_library(mpi-fortran-interface-library INTERFACE)
target_link_libraries(
mpi-fortran-interface-library
INTERFACE
Threads::Threads
MPI::MPI_Fortran
$<TARGET_NAME_IF_EXISTS:rocprofiler-systems::rocprofiler-systems-compile-options>
)
# Also tests the case where Fortran Main has FuncReturnStatus == NORETURN
add_executable(mpi-fortran-intervals intervals_mpi.f90)
target_link_libraries(mpi-fortran-intervals PRIVATE mpi-fortran-interface-library)
endif()
set(CMAKE_BUILD_TYPE "Release")
add_library(mpi-cxx-interface-library INTERFACE)
target_link_libraries(
mpi-cxx-interface-library
INTERFACE
Threads::Threads
MPI::MPI_CXX
$<TARGET_NAME_IF_EXISTS:rocprofiler-systems::rocprofiler-systems-compile-options>
)
add_executable(mpi-example mpi.cpp)
target_link_libraries(mpi-example PRIVATE mpi-cxx-interface-library)
if(ROCPROFSYS_INSTALL_EXAMPLES)
install(
TARGETS
mpi-example
mpi-allgather
mpi-bcast
mpi-all2all
mpi-reduce
mpi-scatter-gather
mpi-send-recv
DESTINATION bin
COMPONENT rocprofiler-systems-examples
)
if(ENABLE_FORTRAN_MPI_CTESTS)
install(
TARGETS mpi-fortran-intervals
DESTINATION bin
COMPONENT rocprofiler-systems-examples
)
endif()
endif()