CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
libminifloat.h
Go to the documentation of this file.
1 #ifndef libminifloat_h
2 #define libminifloat_h
4 #include <cstdint>
5 
6 // ftp://ftp.fox-toolkit.org/pub/fasthalffloatconversion.pdf
8  public:
10  inline static float float16to32(uint16_t h) {
11  union { float flt; uint32_t i32; } conv;
12  conv.i32 = mantissatable[offsettable[h>>10]+(h&0x3ff)]+exponenttable[h>>10];
13  return conv.flt;
14  }
15  inline static uint16_t float32to16(float x) {
16  return float32to16round(x);
17  }
19  inline static uint16_t float32to16crop(float x) {
20  union { float flt; uint32_t i32; } conv;
21  conv.flt = x;
22  return basetable[(conv.i32>>23)&0x1ff]+((conv.i32&0x007fffff)>>shifttable[(conv.i32>>23)&0x1ff]);
23  }
25  inline static uint16_t float32to16round(float x) {
26  union { float flt; uint32_t i32; } conv;
27  conv.flt = x;
28  uint8_t shift = shifttable[(conv.i32>>23)&0x1ff];
29  if (shift == 13) {
30  uint16_t base2 = (conv.i32&0x007fffff)>>12;
31  uint16_t base = base2 >> 1;
32  if (((base2 & 1) != 0) && (base < 1023)) base++;
33  return basetable[(conv.i32>>23)&0x1ff]+base;
34  } else {
35  return basetable[(conv.i32>>23)&0x1ff]+((conv.i32&0x007fffff)>>shifttable[(conv.i32>>23)&0x1ff]);
36  }
37  }
38  template<int bits>
39  inline static float reduceMantissaToNbits(const float &f)
40  {
41  static_assert(bits <= 23,"max mantissa size is 23 bits");
42  constexpr uint32_t mask = (0xFFFFFFFF >> (23-bits)) << (23-bits);
43  union { float flt; uint32_t i32; } conv;
44  conv.flt=f;
45  conv.i32&=mask;
46  return conv.flt;
47  }
48  private:
49  CMS_THREAD_SAFE static uint32_t mantissatable[2048];
50  CMS_THREAD_SAFE static uint32_t exponenttable[64];
51  CMS_THREAD_SAFE static uint16_t offsettable[64];
52  CMS_THREAD_SAFE static uint16_t basetable[512];
53  CMS_THREAD_SAFE static uint8_t shifttable[512];
54  static void filltables() ;
55 };
56 #endif
static uint16_t float32to16crop(float x)
Fast implementation, but it crops the number so it biases low.
Definition: libminifloat.h:19
tuple base
Main Program
Definition: newFWLiteAna.py:92
static uint16_t offsettable[64]
Definition: libminifloat.h:51
static HepMC::IO_HEPEVT conv
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision bits
static float float16to32(uint16_t h)
Definition: libminifloat.h:10
static uint16_t basetable[512]
Definition: libminifloat.h:52
#define constexpr
static uint8_t shifttable[512]
Definition: libminifloat.h:53
static uint16_t float32to16(float x)
Definition: libminifloat.h:15
static uint32_t mantissatable[2048]
Definition: libminifloat.h:49
double f[11][100]
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
static unsigned int const shift
static void filltables()
Definition: libminifloat.cc:18
Definition: DDAxes.h:10
static uint16_t float32to16round(float x)
Slower implementation, but it rounds to avoid biases.
Definition: libminifloat.h:25
#define CMS_THREAD_SAFE
static float reduceMantissaToNbits(const float &f)
Definition: libminifloat.h:39
static uint32_t exponenttable[64]
Definition: libminifloat.h:50