Open ghost opened 1 year ago
@ocelotStride are you able to submit a PR?
@ocelotStride are you able to submit a PR?
I am unsure what you mean by submitting a PR. Would you be able to walk me through it?
PR stands for Pull Request. Here is one website: https://opensource.com/article/19/7/create-pull-request-github that looks about right on how to do this.
Description
In the process of building LAPACK and linking it against IBM's ESSL library, the current makefile appears to be using an incorrect command that leads to overwriting the original BLAS library instead of properly linking it.
The problematic command in the makefile is as follows:
This command misuses the
ar
archive utility and the-lessl
flag, resulting in unintended consequences, such as changes in the library size and potential overwriting of original components.Expected Behaviour:
The makefile should properly link LAPACK with the optimised ESSL library without altering or overwriting the original BLAS components. At least, this is what the language in the makefile would lead one to believe is what is meant to happen and the current default for an XLF build is to use
-lessl
.