Project
Loading...
Searching...
No Matches
o2::OrtDataType::Float16Impl< Derived > Struct Template Reference

Shared implementation between public and internal classes. CRTP pattern. More...

#include <GPUORTFloat16.h>

Public Member Functions

 GPUdDefault () Float16Impl()=default
 
 GPUd () bool IsNegative() const noexcept
 Checks if the value is negative.
 
 GPUd () bool IsNaN() const noexcept
 Tests if the value is NaN.
 
 GPUd () bool IsFinite() const noexcept
 Tests if the value is finite.
 
 GPUd () bool IsPositiveInfinity() const noexcept
 Tests if the value represents positive infinity.
 
 GPUd () bool IsNegativeInfinity() const noexcept
 Tests if the value represents negative infinity.
 
 GPUd () bool IsInfinity() const noexcept
 Tests if the value is either positive or negative infinity.
 
 GPUd () bool IsNaNOrZero() const noexcept
 Tests if the value is NaN or zero. Useful for comparisons.
 
 GPUd () bool IsNormal() const noexcept
 Tests if the value is normal (not zero, subnormal, infinite, or NaN).
 
 GPUd () bool IsSubnormal() const noexcept
 Tests if the value is subnormal (denormal).
 
 GPUd () Derived Abs() const noexcept
 Creates an instance that represents absolute value.
 
 GPUd () Derived Negate() const noexcept
 Creates a new instance with the sign flipped.
 
 GPUd () static bool AreZero(const Float16Impl &lhs
 IEEE defines that positive and negative zero are equal, this gives us a quick equality check for two values by or'ing the private bits together and stripping the sign. They are both zero, and therefore equivalent, if the resulting value is still zero.
 

Public Attributes

uint16_t val {0}
 
const Float16Impl &rhs noexcept
 

Static Public Attributes

static constexpr uint16_t kSignMask = 0x8000U
 
static constexpr uint16_t kBiasedExponentMask = 0x7C00U
 
static constexpr uint16_t kPositiveInfinityBits = 0x7C00U
 
static constexpr uint16_t kNegativeInfinityBits = 0xFC00U
 
static constexpr uint16_t kPositiveQNaNBits = 0x7E00U
 
static constexpr uint16_t kNegativeQNaNBits = 0xFE00U
 
static constexpr uint16_t kEpsilonBits = 0x4170U
 
static constexpr uint16_t kMinValueBits = 0xFBFFU
 
static constexpr uint16_t kMaxValueBits = 0x7BFFU
 
static constexpr uint16_t kOneBits = 0x3C00U
 
static constexpr uint16_t kMinusOneBits = 0xBC00U
 

Protected Member Functions

 GPUd () const expr static uint16_t ToUint16Impl(float v) noexcept
 Converts from float to uint16_t float16 representation.
 
 GPUd () float ToFloatImpl() const noexcept
 Converts float16 to float.
 
 GPUd () uint16_t AbsImpl() const noexcept
 Creates an instance that represents absolute value.
 
 GPUd () uint16_t NegateImpl() const noexcept
 Creates a new instance with the sign flipped.
 

Detailed Description

template<class Derived>
struct o2::OrtDataType::Float16Impl< Derived >

Shared implementation between public and internal classes. CRTP pattern.

Definition at line 54 of file GPUORTFloat16.h.

Member Function Documentation

◆ GPUd() [1/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is finite.

Returns
true if finite

Definition at line 127 of file GPUORTFloat16.h.

◆ GPUd() [2/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is either positive or negative infinity.

Returns
True if absolute value is infinity

Definition at line 154 of file GPUORTFloat16.h.

◆ GPUd() [3/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is NaN.

Returns
true if NaN

Definition at line 118 of file GPUORTFloat16.h.

◆ GPUd() [4/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is NaN or zero. Useful for comparisons.

Returns
True if NaN or zero.

Definition at line 163 of file GPUORTFloat16.h.

◆ GPUd() [5/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Checks if the value is negative.

Returns
true if negative

Definition at line 109 of file GPUORTFloat16.h.

◆ GPUd() [6/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value represents negative infinity.

Returns
true if negative infinity

Definition at line 145 of file GPUORTFloat16.h.

◆ GPUd() [7/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is normal (not zero, subnormal, infinite, or NaN).

Returns
True if so

Definition at line 173 of file GPUORTFloat16.h.

◆ GPUd() [8/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value represents positive infinity.

Returns
true if positive infinity

Definition at line 136 of file GPUORTFloat16.h.

◆ GPUd() [9/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Tests if the value is subnormal (denormal).

Returns
True if so

Definition at line 185 of file GPUORTFloat16.h.

◆ GPUd() [10/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
protectednoexcept

Converts from float to uint16_t float16 representation.

Parameters
v
Returns

◆ GPUd() [11/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Creates an instance that represents absolute value.

Returns
Absolute value

Definition at line 197 of file GPUORTFloat16.h.

◆ GPUd() [12/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlinenoexcept

Creates a new instance with the sign flipped.

Returns
Flipped sign instance

Definition at line 203 of file GPUORTFloat16.h.

◆ GPUd() [13/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
protectednoexcept

Converts float16 to float.

Returns
float representation of float16 value

◆ GPUd() [14/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const &

IEEE defines that positive and negative zero are equal, this gives us a quick equality check for two values by or'ing the private bits together and stripping the sign. They are both zero, and therefore equivalent, if the resulting value is still zero.

Parameters
lhsfirst value
rhssecond value
Returns
True if both arguments represent zero

◆ GPUd() [15/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlineprotectednoexcept

Creates an instance that represents absolute value.

Returns
Absolute value

Definition at line 73 of file GPUORTFloat16.h.

◆ GPUd() [16/16]

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUd ( ) const
inlineprotectednoexcept

Creates a new instance with the sign flipped.

Returns
Flipped sign instance

Definition at line 82 of file GPUORTFloat16.h.

◆ GPUdDefault()

template<class Derived >
o2::OrtDataType::Float16Impl< Derived >::GPUdDefault ( )
default

Member Data Documentation

◆ kBiasedExponentMask

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kBiasedExponentMask = 0x7C00U
staticconstexpr

Definition at line 90 of file GPUORTFloat16.h.

◆ kEpsilonBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kEpsilonBits = 0x4170U
staticconstexpr

Definition at line 95 of file GPUORTFloat16.h.

◆ kMaxValueBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kMaxValueBits = 0x7BFFU
staticconstexpr

Definition at line 97 of file GPUORTFloat16.h.

◆ kMinusOneBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kMinusOneBits = 0xBC00U
staticconstexpr

Definition at line 99 of file GPUORTFloat16.h.

◆ kMinValueBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kMinValueBits = 0xFBFFU
staticconstexpr

Definition at line 96 of file GPUORTFloat16.h.

◆ kNegativeInfinityBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kNegativeInfinityBits = 0xFC00U
staticconstexpr

Definition at line 92 of file GPUORTFloat16.h.

◆ kNegativeQNaNBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kNegativeQNaNBits = 0xFE00U
staticconstexpr

Definition at line 94 of file GPUORTFloat16.h.

◆ kOneBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kOneBits = 0x3C00U
staticconstexpr

Definition at line 98 of file GPUORTFloat16.h.

◆ kPositiveInfinityBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kPositiveInfinityBits = 0x7C00U
staticconstexpr

Definition at line 91 of file GPUORTFloat16.h.

◆ kPositiveQNaNBits

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kPositiveQNaNBits = 0x7E00U
staticconstexpr

Definition at line 93 of file GPUORTFloat16.h.

◆ kSignMask

template<class Derived >
constexpr uint16_t o2::OrtDataType::Float16Impl< Derived >::kSignMask = 0x8000U
staticconstexpr

Definition at line 89 of file GPUORTFloat16.h.

◆ noexcept

template<class Derived >
const Float16Impl& rhs o2::OrtDataType::Float16Impl< Derived >::noexcept
Initial value:
{
return static_cast<uint16_t>((lhs.val | rhs.val) & ~kSignMask) == 0
static constexpr uint16_t kSignMask

Definition at line 213 of file GPUORTFloat16.h.

◆ val

template<class Derived >
uint16_t o2::OrtDataType::Float16Impl< Derived >::val {0}

Definition at line 101 of file GPUORTFloat16.h.


The documentation for this struct was generated from the following file: