Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for OpenMP compiler support #4422

Merged
merged 5 commits into from
Jan 29, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,17 @@ if(alignment_remainder)
endif()
message(STATUS "QMC_SIMD_ALIGNMENT is set to ${QMC_SIMD_ALIGNMENT}")

#---------------------------------------------------------
# Check for OpenMP compiler support if requested
#---------------------------------------------------------
if(QMC_OMP)
find_package(OpenMP)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a comment before this line saying

# OpenMP package currently is only used to to verify compiler support. No feature of this package is been used and we customize OpenMP options directly in per vendor configurations.

if(NOT OpenMP_FOUND)
message(FATAL_ERROR "No compiler support for OpenMP found. You will need to run CMake configure with -DQMC_OMP=OFF"
"Switching to a compiler with OpenMP support is recommended.")
endif()
endif(QMC_OMP)

#---------------------------------------------------------
# Determine if OpenMP taskloop works with the CXX compiler
#---------------------------------------------------------
Expand Down