-
Notifications
You must be signed in to change notification settings - Fork 227
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
aarch64: cd: switch from libomp to libgomp #1787
Conversation
this is the pytorch PR to test this change in ci: pytorch/pytorch#124353 |
57ad1cd
to
77a7bfe
Compare
77a7bfe
to
075abc1
Compare
In the current version of the CD scripts, torch libraries are linked to llvm openmp because conda openblas-openmp is linked to it. To switch to gnu libgomp, we are building the openblas from sources instead of installing from conda.
075abc1
to
b616ae7
Compare
fixed lint errors. |
Looks like it broke nightly builds, because you are building OpenBLAS without LAPACK, will revert and try to fwd fix during the day |
This reverts commit b57d3a8 as it broke nightly tests, becuase OpenBLAS is built without LAPACK.
In the current version of the scripts, torch libraries are linked to llvm openmp becasue conda openblas-openmp is linked to it. to switch to gnu libgomp, we are building the openblas from sources instead of installing from conda. In essence it reverts #1462 fixes #1774 (cherry picked from commit b57d3a8)
I will update the OpenBLAS build for LAPACK |
I have raised this PR to fix the missing LAPACK issue along with switching to libgomp.
|
In the current version of the scripts, torch libraries are linked to llvm openmp becasue conda openblas-openmp is linked to it. to switch to gnu libgomp, we are building the openblas from sources instead of installing from conda.
fixes##1774