-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from ksenyako/release/ccl_2021.3-gold
Intel(R) oneAPI Collective Communications Library (oneCCL) 2021.3
- Loading branch information
Showing
421 changed files
with
17,296 additions
and
7,623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Find the NUMA library and includes | ||
# | ||
# NUMA_INCLUDE_DIR - where to find numa.h | ||
# NUMA_LIBRARIES - list of libraries when using NUMA | ||
# NUMA_FOUND - true if NUMA found | ||
|
||
find_path(NUMA_INCLUDE_DIR | ||
NAMES numa.h numaif.h | ||
HINTS ${NUMA_ROOT_DIR}/include) | ||
|
||
find_library(NUMA_LIBRARIES | ||
NAMES numa | ||
HINTS ${NUMA_ROOT_DIR}/lib) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(NUMA DEFAULT_MSG NUMA_LIBRARIES NUMA_INCLUDE_DIR) | ||
|
||
if (NUMA_FOUND) | ||
message(STATUS "NUMA was found, include_dir: ${NUMA_INCLUDE_DIR}, libraries: ${NUMA_LIBRARIES}") | ||
else() | ||
message(STATUS "NUMA was not found") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.