From 5379d2b5944f2c26ff0ddce65fc6f99f5182f7b7 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Thu, 14 Apr 2016 11:40:48 -0700 Subject: [PATCH] Inline the << operator on half floats --- Eigen/src/Core/arch/CUDA/Half.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/arch/CUDA/Half.h b/Eigen/src/Core/arch/CUDA/Half.h index 8249ce2eb..bdf97dcd6 100644 --- a/Eigen/src/Core/arch/CUDA/Half.h +++ b/Eigen/src/Core/arch/CUDA/Half.h @@ -510,7 +510,7 @@ static EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC int (isfinite)(const Eigen::half& a namespace std { -ostream& operator << (ostream& os, const Eigen::half& v) { +EIGEN_STRONG_INLINE ostream& operator << (ostream& os, const Eigen::half& v) { os << static_cast(v); return os; }