SWDEV-379007 initial implementation of fp8 header

Change-Id: Id9a5a85641882961e4d860a815217c641e6f3387
This commit is contained in:
Jatin Chaudhary
2024-02-13 00:26:43 +00:00
committed by Jatin Jaikishan Chaudhary
parent fcfe2ec88b
commit ca07f59fb1
2 changed files with 1395 additions and 0 deletions
File diff suppressed because it is too large Load Diff
@@ -127,6 +127,10 @@ template<typename _Tp>
struct is_trivial
: public integral_constant<bool, __is_trivial(_Tp)>
{ };
template <bool B, class T, class F> struct conditional { using type = T; };
template <class T, class F> struct conditional<false, T, F> { using type = F; };
}
typedef __hip_internal::uint8_t __hip_uint8_t;
typedef __hip_internal::uint16_t __hip_uint16_t;