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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
In llama.cpp, when weight A is fp16, activation B is fp32, the mat_mul will first convert B into fp16 and store in wdata
But when do the actually vec_dot, both A and B will be convert back to fp32 and do the calculation.
Why use this way? And is this the reason why fp16 prediction is slower than origin fp32 and int8.?
Or did I ignore something?
Beta Was this translation helpful? Give feedback.
All reactions