<T>LAPACK 0.1.1
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
eigen_bfloat16.hpp
Go to the documentation of this file.
1
4//
5// Copyright (c) 2025, University of Colorado Denver. All rights reserved.
6//
7// This file is part of <T>LAPACK.
8// <T>LAPACK is free software: you can redistribute it and/or modify it under
9// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
10
11#ifndef TLAPACK_EIGEN_BFLOAT16_HH
12#define TLAPACK_EIGEN_BFLOAT16_HH
13
14#include <Eigen/Core>
15
17
18namespace tlapack {
19
20namespace traits {
21 // Eigen::bfloat16 is a real type that satisfies tlapack::concepts::Real
22 template <>
24 using type = Eigen::bfloat16;
25 constexpr static bool is_real = true;
26 };
27 // The complex type of Eigen::bfloat16 is std::complex<Eigen::bfloat16>
28 template <>
30 using type = std::complex<Eigen::bfloat16>;
31 constexpr static bool is_complex = false;
32 };
33} // namespace traits
34
35inline Eigen::bfloat16 pow(int base, const Eigen::bfloat16& exp)
36{
37 return Eigen::bfloat16_impl::pow(Eigen::bfloat16(float(base)), exp);
38}
39
40} // namespace tlapack
41
42inline std::istream& operator>>(std::istream& is, Eigen::bfloat16& x)
43{
44 float f;
45 is >> f;
46 x = Eigen::bfloat16(f);
47 return is;
48}
49
50#endif // TLAPACK_EIGEN_HALF_HH
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