-
Notifications
You must be signed in to change notification settings - Fork 57
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
Asadchev/refactor/lapack #232
Conversation
- echo 'localhost slots=8' > /etc/openmpi/openmpi-default-hostfile | ||
- apt-get install -yq intel-mkl-core-c-2020.4-304 | ||
- ln -s /opt/intel/compilers_and_libraries_2020.4.304/linux/mkl/ /opt/intel/ |
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.
better to load /opt/intel/compilers_and_libraries_2020.4.304/linux/mkl/bin/mklvars.sh
to test discovery from MKLROOT
-defined location?
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 had that at first, but this seems more common case
TA_LAPACKE_CALL(z##name, args); \ | ||
else if constexpr (std::is_same_v<numeric_type, std::complex<float>>) \ | ||
TA_LAPACKE_CALL(c##name, args); \ | ||
TA_LAPACK_CALL(s##name, args); \ |
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.
why no complex?
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.
compile issues due to constexpr defificencies.
b7c1bd2
to
6b02df5
Compare
6b02df5
to
72551ef
Compare
No description provided.