-
Notifications
You must be signed in to change notification settings - Fork 203
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 'mt_blas_lapack' toolchain option (WIP) #2356
base: develop
Are you sure you want to change the base?
Conversation
libscalack_ictce3 += " -lmkl_intel_lp64 -lmkl_sequential -lmkl_core" | ||
libscalapack_ictce3_tpl = "-lmkl_scalapack_lp64 %s -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 %s -lmkl_core" | ||
libscalapack_ictce3 = libscalapack_ictce3_tpl % ('-lmkl_solver_lp64_sequential', '-lmkl_sequential') | ||
libscalapack_mt_ictce3 = libscalapack_ictce3_tpl % ('-lmkl_solver_lp64', '-lmkl_intel_thread') |
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.
I guess it doesn't matter but the iomp library is missing
libscalack_ictce4 = "-lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core" | ||
libscalapack_ictce4_tpl = "-lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 %s -lmkl_core" | ||
libscalapack_ictce4 = libscalapack_ictce4_tpl % '-lmkl_sequential' | ||
libscalapack_mt_ictce4 = libscalapack_ictce4_tpl % '-lmkl_intel_thread' |
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.
here too
This looks ok in its current form. Should we merge it or try to make it take a list form first? |
@boegel Care to fix the conflict? |
see discussion in #2350