Just looking for suggestions, how should the IEEE754 single precision floating point representation i.e. the following:
-1sign ∗ 2exponent-127 ∗ 1.mantissa2
where the hidden bit worth is 1.0, be accurately and efficiently converted to a custom floating point representation format like the following:
-1sign ∗ 2exponent-128 ∗ 0.1mantissa2
where the hidden bit worth is 0.5
I do not intend to delegate the work to someone to do this work for me but mostly looking for suggestions on how to do it in the right and most accurate way.