diff --git a/Grid/serialisation/BaseIO.h b/Grid/serialisation/BaseIO.h index f11dcde5..e9d5bedf 100644 --- a/Grid/serialisation/BaseIO.h +++ b/Grid/serialisation/BaseIO.h @@ -583,7 +583,27 @@ namespace Grid { template static inline typename std::enable_if::value, void>::type WriteMember(std::ostream &os, const T &object) { - os << "Eigen::Tensor"; + using Index = typename T::Index; + const Index NumElements{object.size()}; + assert( NumElements > 0 ); + Index count = 1; + os << "T<"; + for( int i = 0; i < T::NumIndices; i++ ) { + Index dim = object.dimension(i); + count *= dim; + if( i ) + os << ","; + os << dim; + } + assert( count == NumElements && "Number of elements doesn't match tensor dimensions" ); + os << ">{"; + const typename T::Scalar * p = object.data(); + for( Index i = 0; i < count; i++ ) { + if( i ) + os << ","; + os << *p++; + } + os << "}"; } };