XeTLA v0.3.6
IntelĀ® Xe Templates for Linear Algebra - API Definition Document
 
Loading...
Searching...
No Matches
gpu::xetla::is_integral< T > Struct Template Reference

Used to check if the type is floating_point. More...

#include <base_types.hpp>

Static Public Attributes

static constexpr bool value
 

Detailed Description

template<typename T>
struct gpu::xetla::is_integral< T >

Used to check if the type is floating_point.

Template Parameters
Tis the data type

Member Data Documentation

◆ value

template<typename T >
constexpr bool gpu::xetla::is_integral< T >::value
staticconstexpr
Initial value:
= std::is_same<remove_const_t<T>, int8_t>::value
|| std::is_same<remove_const_t<T>, uint8_t>::value
|| std::is_same<remove_const_t<T>, int16_t>::value
|| std::is_same<remove_const_t<T>, uint16_t>::value
|| std::is_same<remove_const_t<T>, int32_t>::value
|| std::is_same<remove_const_t<T>, uint32_t>::value
|| std::is_same<remove_const_t<T>, int64_t>::value
|| std::is_same<remove_const_t<T>, uint64_t>::value
static constexpr bool value
Definition base_types.hpp:87