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 look into MulAddRecFN.scala which is seemed that body of float mult-add (out = A*B + C).
The flow is indeed as follows;
in -> preMul -> postMul -> out
preMul
extract sign, significant, mantissa by rawFloatFromRecFN().
Significant of C alignment
output
postMul
Addition with C (line #206)
Normalize for result
Rounding for result
I could not find multiplication for mantissa part of A and B operands, where actually does it?
The text was updated successfully, but these errors were encountered:
IAMAl
changed the title
Mult for Significant
Mult for Mantissa
Oct 5, 2019
I look into MulAddRecFN.scala which is seemed that body of float mult-add (out = A*B + C).
The flow is indeed as follows;
in -> preMul -> postMul -> out
I could not find multiplication for mantissa part of A and B operands, where actually does it?
The text was updated successfully, but these errors were encountered: