mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Fixed the printing of rank-0 tensors
This commit is contained in:
parent
b055590e91
commit
de32f8d656
@ -17,34 +17,58 @@ template<>
|
|||||||
struct significant_decimals_impl<std::string>
|
struct significant_decimals_impl<std::string>
|
||||||
: significant_decimals_default_impl<std::string, true>
|
: significant_decimals_default_impl<std::string, true>
|
||||||
{};
|
{};
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
template <typename T>
|
// Print the tensor as a 2d matrix
|
||||||
std::ostream& operator << (std::ostream& os, const TensorBase<T, ReadOnlyAccessors>& expr) {
|
template <typename Tensor, int Rank>
|
||||||
// Evaluate the expression if needed
|
struct TensorPrinter {
|
||||||
TensorForcedEvalOp<const T> eval = expr.eval();
|
static void run (std::ostream& os, const Tensor& tensor) {
|
||||||
TensorEvaluator<const TensorForcedEvalOp<const T>, DefaultDevice> tensor(eval, DefaultDevice());
|
typedef typename internal::remove_const<typename Tensor::Scalar>::type Scalar;
|
||||||
tensor.evalSubExprsIfNeeded(NULL);
|
typedef typename Tensor::Index Index;
|
||||||
|
const Index total_size = internal::array_prod(tensor.dimensions());
|
||||||
typedef typename internal::remove_const<typename T::Scalar>::type Scalar;
|
|
||||||
typedef typename T::Index Index;
|
|
||||||
typedef typename TensorEvaluator<const TensorForcedEvalOp<const T>, DefaultDevice>::Dimensions Dimensions;
|
|
||||||
const Index total_size = internal::array_prod(tensor.dimensions());
|
|
||||||
|
|
||||||
// Print the tensor as a 1d vector or a 2d matrix.
|
|
||||||
static const int rank = internal::array_size<Dimensions>::value;
|
|
||||||
if (rank == 0) {
|
|
||||||
os << tensor.coeff(0);
|
|
||||||
} else if (rank == 1) {
|
|
||||||
Map<const Array<Scalar, Dynamic, 1> > array(const_cast<Scalar*>(tensor.data()), total_size);
|
|
||||||
os << array;
|
|
||||||
} else {
|
|
||||||
const Index first_dim = Eigen::internal::array_get<0>(tensor.dimensions());
|
const Index first_dim = Eigen::internal::array_get<0>(tensor.dimensions());
|
||||||
static const int layout = TensorEvaluator<const TensorForcedEvalOp<const T>, DefaultDevice>::Layout;
|
static const int layout = Tensor::Layout;
|
||||||
Map<const Array<Scalar, Dynamic, Dynamic, layout> > matrix(const_cast<Scalar*>(tensor.data()), first_dim, total_size/first_dim);
|
Map<const Array<Scalar, Dynamic, Dynamic, layout> > matrix(const_cast<Scalar*>(tensor.data()), first_dim, total_size/first_dim);
|
||||||
os << matrix;
|
os << matrix;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Print the tensor as a vector
|
||||||
|
template <typename Tensor>
|
||||||
|
struct TensorPrinter<Tensor, 1> {
|
||||||
|
static void run (std::ostream& os, const Tensor& tensor) {
|
||||||
|
typedef typename internal::remove_const<typename Tensor::Scalar>::type Scalar;
|
||||||
|
typedef typename Tensor::Index Index;
|
||||||
|
const Index total_size = internal::array_prod(tensor.dimensions());
|
||||||
|
Map<const Array<Scalar, Dynamic, 1> > array(const_cast<Scalar*>(tensor.data()), total_size);
|
||||||
|
os << array;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Print the tensor as a scalar
|
||||||
|
template <typename Tensor>
|
||||||
|
struct TensorPrinter<Tensor, 0> {
|
||||||
|
static void run (std::ostream& os, const Tensor& tensor) {
|
||||||
|
os << tensor.coeff(0);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
std::ostream& operator << (std::ostream& os, const TensorBase<T, ReadOnlyAccessors>& expr) {
|
||||||
|
typedef TensorEvaluator<const TensorForcedEvalOp<const T>, DefaultDevice> Evaluator;
|
||||||
|
typedef typename Evaluator::Dimensions Dimensions;
|
||||||
|
|
||||||
|
// Evaluate the expression if needed
|
||||||
|
TensorForcedEvalOp<const T> eval = expr.eval();
|
||||||
|
Evaluator tensor(eval, DefaultDevice());
|
||||||
|
tensor.evalSubExprsIfNeeded(NULL);
|
||||||
|
|
||||||
|
// Print the result
|
||||||
|
static const int rank = internal::array_size<Dimensions>::value;
|
||||||
|
internal::TensorPrinter<Evaluator, rank>::run(os, tensor);
|
||||||
|
|
||||||
// Cleanup.
|
// Cleanup.
|
||||||
tensor.cleanup();
|
tensor.cleanup();
|
||||||
|
@ -13,6 +13,20 @@
|
|||||||
#include <Eigen/CXX11/Tensor>
|
#include <Eigen/CXX11/Tensor>
|
||||||
|
|
||||||
|
|
||||||
|
template<int DataLayout>
|
||||||
|
static void test_output_0d()
|
||||||
|
{
|
||||||
|
Tensor<int, 0, DataLayout> tensor;
|
||||||
|
tensor() = 123;
|
||||||
|
|
||||||
|
std::stringstream os;
|
||||||
|
os << tensor;
|
||||||
|
|
||||||
|
std::string expected("123");
|
||||||
|
VERIFY_IS_EQUAL(std::string(os.str()), expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
template<int DataLayout>
|
template<int DataLayout>
|
||||||
static void test_output_1d()
|
static void test_output_1d()
|
||||||
{
|
{
|
||||||
@ -101,6 +115,8 @@ static void test_output_const()
|
|||||||
|
|
||||||
void test_cxx11_tensor_io()
|
void test_cxx11_tensor_io()
|
||||||
{
|
{
|
||||||
|
CALL_SUBTEST(test_output_0d<ColMajor>());
|
||||||
|
CALL_SUBTEST(test_output_0d<RowMajor>());
|
||||||
CALL_SUBTEST(test_output_1d<ColMajor>());
|
CALL_SUBTEST(test_output_1d<ColMajor>());
|
||||||
CALL_SUBTEST(test_output_1d<RowMajor>());
|
CALL_SUBTEST(test_output_1d<RowMajor>());
|
||||||
CALL_SUBTEST(test_output_2d<ColMajor>());
|
CALL_SUBTEST(test_output_2d<ColMajor>());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user