From f0238cfb6997c4acfc2bd200de7295f3fa36968f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 3 Mar 2019 21:09:10 +0100 Subject: don't index Eigen --- eigen/unsupported/test/cxx11_tensor_generator.cpp | 91 ----------------------- 1 file changed, 91 deletions(-) delete mode 100644 eigen/unsupported/test/cxx11_tensor_generator.cpp (limited to 'eigen/unsupported/test/cxx11_tensor_generator.cpp') diff --git a/eigen/unsupported/test/cxx11_tensor_generator.cpp b/eigen/unsupported/test/cxx11_tensor_generator.cpp deleted file mode 100644 index dcb9287..0000000 --- a/eigen/unsupported/test/cxx11_tensor_generator.cpp +++ /dev/null @@ -1,91 +0,0 @@ -// This file is part of Eigen, a lightweight C++ template library -// for linear algebra. -// -// Copyright (C) 2015 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 - -struct Generator1D { - Generator1D() { } - - float operator()(const array& coordinates) const { - return coordinates[0]; - } -}; - -template -static void test_1D() -{ - Tensor vec(6); - Tensor result = vec.generate(Generator1D()); - - for (int i = 0; i < 6; ++i) { - VERIFY_IS_EQUAL(result(i), i); - } -} - - -struct Generator2D { - Generator2D() { } - - float operator()(const array& coordinates) const { - return 3 * coordinates[0] + 11 * coordinates[1]; - } -}; - -template -static void test_2D() -{ - Tensor matrix(5, 7); - Tensor result = matrix.generate(Generator2D()); - - for (int i = 0; i < 5; ++i) { - for (int j = 0; j < 5; ++j) { - VERIFY_IS_EQUAL(result(i, j), 3*i + 11*j); - } - } -} - - -template -static void test_gaussian() -{ - int rows = 32; - int cols = 48; - array means; - means[0] = rows / 2.0f; - means[1] = cols / 2.0f; - array std_devs; - std_devs[0] = 3.14f; - std_devs[1] = 2.7f; - internal::GaussianGenerator gaussian_gen(means, std_devs); - - Tensor matrix(rows, cols); - Tensor result = matrix.generate(gaussian_gen); - - for (int i = 0; i < rows; ++i) { - for (int j = 0; j < cols; ++j) { - float g_rows = powf(rows/2.0f - i, 2) / (3.14f * 3.14f) * 0.5f; - float g_cols = powf(cols/2.0f - j, 2) / (2.7f * 2.7f) * 0.5f; - float gaussian = expf(-g_rows - g_cols); - VERIFY_IS_EQUAL(result(i, j), gaussian); - } - } -} - - -void test_cxx11_tensor_generator() -{ - CALL_SUBTEST(test_1D()); - CALL_SUBTEST(test_1D()); - CALL_SUBTEST(test_2D()); - CALL_SUBTEST(test_2D()); - CALL_SUBTEST(test_gaussian()); - CALL_SUBTEST(test_gaussian()); -} -- cgit v1.2.3