FloatingPointBF16 constructor

FloatingPointBF16({
  1. String? name,
})

Construct a BF16 16-bit floating point number.

Implementation

FloatingPointBF16({super.name})
    : super(
          mantissaWidth: FloatingPointBF16Value.populator().mantissaWidth,
          exponentWidth: FloatingPointBF16Value.populator().exponentWidth);