-
Notifications
You must be signed in to change notification settings - Fork 99
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
Add support for GCC MKL builds: Issue #480 #653
Conversation
Passes tpl spot-checks
|
MESSAGE(FATAL_ERROR "No support currently for MKL without using the Intel compiler") | ||
IF (NOT DEFINED ENV{MKLROOT}) | ||
SET(NO_MKL_ROOT_GIVEN "MKL-NOTFOUND") | ||
MESSAGE(WARNING "No MKLROOT environment variable specified - must source mklvars.sh to configure MKL path") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jjwilke what is mklvars.sh?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MKL installation comes with an mklvars.sh that you should source to configure your environment. It's really the only robust way to make sure all the libraries can be found for non-Intel compilers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It comes from the MKL installation, not Kokkos Kernels - in case that wasn't clear. I can change the verbage if that was confusing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not necessary to change it, thanks for clarifying.
No description provided.