Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lib4neuro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MolDyn
lib4neuro
Commits
af49ab0f
Commit
af49ab0f
authored
6 years ago
by
Martin Beseda
Browse files
Options
Downloads
Patches
Plain Diff
FIX: Removed unneccessary parts of code in FindOpenBLAS.cmake
parent
70ed77e4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
FindOpenBLAS.cmake
+26
-44
26 additions, 44 deletions
FindOpenBLAS.cmake
with
26 additions
and
44 deletions
FindOpenBLAS.cmake
+
26
−
44
View file @
af49ab0f
message
(
"FindOpenBLAS starting..."
)
set
(
OpenBLAS_ROOT external_dependencies/OpenBLAS
)
FIND_PATH
(
OpenBLAS_INCLUDE_DIR
...
...
@@ -20,55 +18,39 @@ FIND_PATH(
include/OpenBLAS
)
#IF(${OpenBLAS_INCLUDE_DIR} MATCHES "^.*external_dependencies.*$")
# # If OpenBLAS is downloaded locally, the library will be compiled during build-time
# INCLUDE(FindPackageHandleStandardArgs)
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(
# OpenBLAS
# "OpenBLAS was NOT found!"
# OpenBLAS_INCLUDE_DIR)
#
# if(OpenBLAS_FOUND)
# message(STATUS "OpenBLAS is downloaded locally: ${OpenBLAS_INCLUDE_DIR}")
# endif()
#
#else()
FIND_LIBRARY
(
OpenBLAS_LIBRARIES
NAMES
${
LIB_PREFIX
}
openblas.
${
LIB_SUFFIX
}
FIND_LIBRARY
(
OpenBLAS_LIBRARIES
HINTS
${
OpenBLAS_LIBRARY_DIRECTORY
}
$ENV{OpenBLAS_LIBRARY_DIRECTORY}
${
ROOT_DIR
}
/external_dependencies/OpenBLAS
/usr
NAMES
${
LIB_PREFIX
}
openblas.
${
LIB_SUFFIX
}
PATH_SUFFIXES
lib
lib/x86_64-linux-gnu
local
include/OpenBLAS/lib
)
HINTS
${
OpenBLAS_LIBRARY_DIRECTORY
}
$ENV{OpenBLAS_LIBRARY_DIRECTORY}
${
ROOT_DIR
}
/external_dependencies/OpenBLAS
/usr
# Set OpenBLAS_Found
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
OpenBLAS
PATH_SUFFIXES
lib
lib/x86_64-linux-gnu
local
include/OpenBLAS/lib
)
FAIL_MESSAGE
"OpenBLAS was NOT found!"
# Set OpenBLAS_Found
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
OpenBLAS
REQUIRED_VARS
OpenBLAS_INCLUDE_DIR
OpenBLAS_LIBRARIES
)
FAIL_MESSAGE
"OpenBLAS was NOT found!"
#endif()
REQUIRED_VARS
OpenBLAS_INCLUDE_DIR
OpenBLAS_LIBRARIES
)
IF
(
OpenBLAS_
LIBRARIES
)
IF
(
OpenBLAS_
FOUND
)
MESSAGE
(
STATUS
"Found OpenBLAS libraries:
${
OpenBLAS_LIBRARIES
}
"
)
MESSAGE
(
STATUS
"Found OpenBLAS include:
${
OpenBLAS_INCLUDE_DIR
}
"
)
ELSE
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment