// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2014 Benoit Steiner // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. #include "main.h" #include #include #include template static void test_output_0d() { Tensor tensor; tensor() = 123; std::stringstream os; os << tensor; std::string expected("123"); VERIFY_IS_EQUAL(std::string(os.str()), expected); } template static void test_output_1d() { Tensor tensor(5); for (int i = 0; i < 5; ++i) { tensor(i) = i; } std::stringstream os; os << tensor; std::string expected("0\n1\n2\n3\n4"); VERIFY_IS_EQUAL(std::string(os.str()), expected); Eigen::Tensor empty_tensor(0); std::stringstream empty_os; empty_os << empty_tensor; std::string empty_string; VERIFY_IS_EQUAL(std::string(empty_os.str()), empty_string); } template static void test_output_2d() { Tensor tensor(5, 3); for (int i = 0; i < 5; ++i) { for (int j = 0; j < 3; ++j) { tensor(i, j) = i*j; } } std::stringstream os; os << tensor; std::string expected("0 0 0\n0 1 2\n0 2 4\n0 3 6\n0 4 8"); VERIFY_IS_EQUAL(std::string(os.str()), expected); } template static void test_output_expr() { Tensor tensor1(5); Tensor tensor2(5); for (int i = 0; i < 5; ++i) { tensor1(i) = i; tensor2(i) = 7; } std::stringstream os; os << tensor1 + tensor2; std::string expected(" 7\n 8\n 9\n10\n11"); VERIFY_IS_EQUAL(std::string(os.str()), expected); } template static void test_output_string() { Tensor tensor(5, 3); tensor.setConstant(std::string("foo")); std::cout << tensor << std::endl; std::stringstream os; os << tensor; std::string expected("foo foo foo\nfoo foo foo\nfoo foo foo\nfoo foo foo\nfoo foo foo"); VERIFY_IS_EQUAL(std::string(os.str()), expected); } template static void test_output_const() { Tensor tensor(5); for (int i = 0; i < 5; ++i) { tensor(i) = i; } TensorMap > tensor_map(tensor.data(), 5); std::stringstream os; os << tensor_map; std::string expected("0\n1\n2\n3\n4"); VERIFY_IS_EQUAL(std::string(os.str()), expected); } EIGEN_DECLARE_TEST(cxx11_tensor_io) { CALL_SUBTEST(test_output_0d()); CALL_SUBTEST(test_output_0d()); CALL_SUBTEST(test_output_1d()); CALL_SUBTEST(test_output_1d()); CALL_SUBTEST(test_output_2d()); CALL_SUBTEST(test_output_2d()); CALL_SUBTEST(test_output_expr()); CALL_SUBTEST(test_output_expr()); CALL_SUBTEST(test_output_string()); CALL_SUBTEST(test_output_string()); CALL_SUBTEST(test_output_const()); CALL_SUBTEST(test_output_const()); }