11#ifndef TLAPACK_EIGEN_BFLOAT16_HH
12#define TLAPACK_EIGEN_BFLOAT16_HH
24 using type = Eigen::bfloat16;
25 constexpr static bool is_real =
true;
30 using type = std::complex<Eigen::bfloat16>;
35inline Eigen::bfloat16 pow(
int base,
const Eigen::bfloat16&
exp)
37 return Eigen::bfloat16_impl::pow(Eigen::bfloat16(
float(
base)),
exp);
42inline std::istream& operator>>(std::istream& is, Eigen::bfloat16& x)
46 x = Eigen::bfloat16(f);
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113
constexpr bool is_complex
True if T is a complex scalar type.
Definition scalar_type_traits.hpp:192
constexpr bool is_real
True if T is a real scalar type.
Definition scalar_type_traits.hpp:117
Complex type traits for the list of types Types.
Definition scalar_type_traits.hpp:145
Real type traits for the list of types Types.
Definition scalar_type_traits.hpp:71