| // Copyright 2024 Google LLC |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| package common |
| |
| import chisel3._ |
| import chisel3.util._ |
| |
| class Fp32 extends Bundle { |
| val mantissa = UInt(23.W) |
| val exponent = UInt(8.W) |
| val sign = Bool() |
| |
| def asWord(): UInt = { |
| Cat(sign, exponent, mantissa) |
| } |
| |
| def isZero(): Bool = { |
| (exponent === 0.U) && (mantissa === 0.U) |
| } |
| |
| def isInf(): Bool = { |
| (exponent === "b11111111".U) && (mantissa === 0.U) |
| } |
| |
| def isNan(): Bool = { |
| (exponent === "b11111111".U) && (mantissa =/= 0.U) |
| } |
| |
| // The mantissa is the fractional component of significand. |
| // There is a leading 1, except for subnormal numbers. |
| def significand(): UInt = { |
| Cat(exponent.orR, mantissa) |
| } |
| |
| def negate(): Fp32 = { |
| val negated = Wire(new Fp32) |
| negated.sign := ~sign |
| negated.exponent := exponent |
| negated.mantissa := mantissa |
| negated |
| } |
| } |
| |
| object Fp32 { |
| def apply(sign: Bool, exponent: UInt, mantissa: UInt): Fp32 = { |
| assert(exponent.getWidth == 8) |
| assert(mantissa.getWidth == 23) |
| val fp = Wire(new Fp32) |
| fp.mantissa := mantissa |
| fp.exponent := exponent |
| fp.sign := sign |
| fp |
| } |
| |
| def fromWord(word: UInt): Fp32 = { |
| assert(word.getWidth == 32) |
| val fp = Wire(new Fp32) |
| fp.mantissa := word(22, 0) |
| fp.exponent := word(30, 23) |
| fp.sign := word(31) |
| fp |
| } |
| |
| /** "static_cast" an integer into a fp32 number. |
| * @param word The integer to convert. |
| * @param sign If the integer is signed. |
| * @return The converted floating point number. |
| */ |
| def fromInteger(int: UInt, sign: Bool): Fp32 = { |
| val intLength = int.getWidth |
| assert(intLength == 32, "fromInteger currently only supports 32-bit ints") |
| val floatSign = sign & int(intLength - 1) |
| val absInt = Mux(floatSign, (~int) + 1.U, int) |
| |
| val preround = Wire(UInt(25.W)) |
| val leadingZeros = Clz(absInt) |
| if (intLength >= 25) { |
| preround := (absInt << leadingZeros)(intLength - 1, intLength - 25) |
| } else { |
| val shift = (25 - intLength).U + leadingZeros |
| preround := (absInt << leadingZeros)(24, 0) |
| } |
| |
| val zero = (preround === 0.U) |
| // TODO(derekjchow): Rounding mode |
| val rounded = preround +& (~floatSign) // 26 bits |
| val mantissa = Mux(rounded(25), rounded(24, 2), rounded(23, 1)) |
| val exponent = Mux( |
| zero, 0.U(8.W), (intLength + 127 - 1).U(8.W) - leadingZeros) |
| |
| Fp32(floatSign, exponent, mantissa) |
| } |
| |
| def Zero(sign: Bool): Fp32 = { |
| val fp = Wire(new Fp32) |
| fp.mantissa := 0.U |
| fp.exponent := 0.U |
| fp.sign := sign |
| fp |
| } |
| |
| def Inf(sign: Bool): Fp32 = { |
| val fp = Wire(new Fp32) |
| fp.mantissa := 0.U |
| fp.exponent := "b11111111".U |
| fp.sign := sign |
| fp |
| } |
| |
| def NaN(): Fp32 = { |
| val fp = Wire(new Fp32) |
| fp.mantissa := (1 << 22).U // Cannonical NaN per RV32F spec |
| fp.exponent := "b11111111".U |
| fp.sign := 0.U |
| fp |
| } |
| } |