Always attempt to find Nanos6 and NODES

Causes the packages to always appear as found or not found in the
summary of cmake. Otherwise they were only checked if the compiler
supports the -fompss2 flag.
This commit is contained in:
Rodrigo Arias 2023-12-15 10:56:31 +01:00
parent 2b2a0eea8e
commit 1918ab6669
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
# SPDX-License-Identifier: GPL-3.0-or-later
find_package(Nanos6)
include(CheckOmpSs2Compiler)
if(NOT OMPSS2_COMPILER_FOUND)
if(ENABLE_ALL_TESTS)
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable Nanos6 RT tests")
@ -11,7 +13,6 @@ if(NOT OMPSS2_COMPILER_FOUND)
return()
endif()
find_package(Nanos6)
if(NOT NANOS6_FOUND)
if(ENABLE_ALL_TESTS)
message(FATAL_ERROR "Nanos6 not found, cannot enable Nanos6 RT tests")

View File

@ -1,7 +1,9 @@
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
# SPDX-License-Identifier: GPL-3.0-or-later
find_package(Nodes)
include(CheckOmpSs2Compiler)
if(NOT OMPSS2_COMPILER_FOUND)
if(ENABLE_ALL_TESTS)
message(FATAL_ERROR "Compiler doesn't support -fompss-2 flag, cannot enable NODES RT tests")
@ -11,7 +13,6 @@ if(NOT OMPSS2_COMPILER_FOUND)
return()
endif()
find_package(Nodes)
if(NOT NODES_FOUND)
if(ENABLE_ALL_TESTS)
message(FATAL_ERROR "NODES not found, cannot enable NODES RT tests")