-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
BINARY=64 not set on aarch64 #39612
Comments
Pinging a randomized subset of the linear algebra crew to see if there is any reason ILP64 might be disabled on aarch64. |
Need to contact this guy: #31399 |
I knew there was a reason I pinged you Simon. |
Yeah, we should probably go to ILP64 on aarch64. It will also require a bunch of BB stuff to be rebuilt. |
So this will be blocking JuliaLang/LinearAlgebra.jl#807 if I understand correctly? |
#39455 turns on ILP64 BLAS for aarch64, and passes all tests, so this does not block JuliaLang/LinearAlgebra.jl#807 (surprisingly). I do wonder if |
|
I'm not certain if this is an unintentional oversight or something more profound, but our
Makefile
system does not setBINARY=64
onaarch64
. This, in turn, causes OpenBLAS to be built (from source) as an LP64 (e.g. not an ILP64) build, which in turn causes us to build OpenBLAS as LP64 in Yggdrasil, which is not in line with our other 64-bit platforms such asx86_64
andpowerpc64le
.I think we probably want to build OpenBLAS as ILP64 and set BINARY=64 on aarch64.
The text was updated successfully, but these errors were encountered: