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
This would slightly differ from the original implementation, however, if we replace all instances of
x += y * z;
with
x = Math.fma(y, z, x);
we can get a huge speedup, for example, replacing all occurrences of this in just the de.bwaldvogel.liblinear.SparseOperator class we can get a 2x speed up on machines with FMA enabled.
However it would require switching to Java 9.
The text was updated successfully, but these errors were encountered:
This would slightly differ from the original implementation, however, if we replace all instances of
x += y * z;
with
x = Math.fma(y, z, x);
we can get a huge speedup, for example, replacing all occurrences of this in just the
de.bwaldvogel.liblinear.SparseOperator
class we can get a 2x speed up on machines with FMA enabled.However it would require switching to Java 9.
The text was updated successfully, but these errors were encountered: