We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why is Float16 missing from Base.HWReal on Apple silicon? On my M2 Pro, Julia 1.10 I get
julia> Base.HWReal Union{Float32, Float64, Int16, Int32, Int64, Int8, UInt16, UInt32, UInt64, UInt8}
The text was updated successfully, but these errors were encountered:
There is a bit of a challenge here. HWReal is per architecture, and Float16 is per micro-architecture.
Float16
x-ref: #46499 #43327 #40216
Sorry, something went wrong.
OK. Some useful packages query Base.HWReal. LoopVecrtorization.jl is one example.
Base.HWReal
LoopVecrtorization.jl
Yeah we would need to have a has_float16 predicate like has_fma
has_float16
has_fma
Fixed by #55929.
Successfully merging a pull request may close this issue.
Why is Float16 missing from Base.HWReal on Apple silicon? On my M2 Pro, Julia 1.10 I get
The text was updated successfully, but these errors were encountered: