You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected this to work, but it didn't. There is generally no problem with having minus signs inside muladd, because FMA instructions allow for that, so expressions like b-a*x should be converted to muladd(-a, x, b).
julia> macroexpand(:(MuladdMacro.@muladd b - a * x))
:(b - a * x)
julia> macroexpand(:(MuladdMacro.@muladd b + a * x))
:((muladd)(a, x, b))
The text was updated successfully, but these errors were encountered:
I expected this to work, but it didn't. There is generally no problem with having minus signs inside muladd, because FMA instructions allow for that, so expressions like
b-a*x
should be converted tomuladd(-a, x, b)
.The text was updated successfully, but these errors were encountered: