summaryrefslogtreecommitdiffhomepage
path: root/eigen/unsupported/test/cxx11_tensor_custom_index.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:09:10 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:10:13 +0100
commitf0238cfb6997c4acfc2bd200de7295f3fa36968f (patch)
treeb215183760e4f615b9c1dabc1f116383b72a1b55 /eigen/unsupported/test/cxx11_tensor_custom_index.cpp
parent543edd372a5193d04b3de9f23c176ab439e51b31 (diff)
don't index Eigen
Diffstat (limited to 'eigen/unsupported/test/cxx11_tensor_custom_index.cpp')
-rw-r--r--eigen/unsupported/test/cxx11_tensor_custom_index.cpp100
1 files changed, 0 insertions, 100 deletions
diff --git a/eigen/unsupported/test/cxx11_tensor_custom_index.cpp b/eigen/unsupported/test/cxx11_tensor_custom_index.cpp
deleted file mode 100644
index 4528cc1..0000000
--- a/eigen/unsupported/test/cxx11_tensor_custom_index.cpp
+++ /dev/null
@@ -1,100 +0,0 @@
-// This file is part of Eigen, a lightweight C++ template library
-// for linear algebra.
-//
-// Copyright (C) 2015 Benoit Steiner <benoit.steiner.goog@gmail.com>
-//
-// 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 <limits>
-#include <map>
-
-#include <Eigen/Dense>
-#include <Eigen/CXX11/Tensor>
-
-using Eigen::Tensor;
-
-
-template <int DataLayout>
-static void test_map_as_index()
-{
-#ifdef EIGEN_HAS_SFINAE
- Tensor<float, 4, DataLayout> tensor(2, 3, 5, 7);
- tensor.setRandom();
-
- using NormalIndex = DSizes<ptrdiff_t, 4>;
- using CustomIndex = std::map<ptrdiff_t, ptrdiff_t>;
- CustomIndex coeffC;
- coeffC[0] = 1;
- coeffC[1] = 2;
- coeffC[2] = 4;
- coeffC[3] = 1;
- NormalIndex coeff(1,2,4,1);
-
- VERIFY_IS_EQUAL(tensor.coeff(coeffC), tensor.coeff(coeff));
- VERIFY_IS_EQUAL(tensor.coeffRef(coeffC), tensor.coeffRef(coeff));
-#endif
-}
-
-
-template <int DataLayout>
-static void test_matrix_as_index()
-{
-#ifdef EIGEN_HAS_SFINAE
- Tensor<float, 4, DataLayout> tensor(2, 3, 5, 7);
- tensor.setRandom();
-
- using NormalIndex = DSizes<ptrdiff_t, 4>;
- using CustomIndex = Matrix<unsigned int, 4, 1>;
- CustomIndex coeffC(1,2,4,1);
- NormalIndex coeff(1,2,4,1);
-
- VERIFY_IS_EQUAL(tensor.coeff(coeffC), tensor.coeff(coeff));
- VERIFY_IS_EQUAL(tensor.coeffRef(coeffC), tensor.coeffRef(coeff));
-#endif
-}
-
-
-template <int DataLayout>
-static void test_varlist_as_index()
-{
-#ifdef EIGEN_HAS_SFINAE
- Tensor<float, 4, DataLayout> tensor(2, 3, 5, 7);
- tensor.setRandom();
-
- DSizes<ptrdiff_t, 4> coeff(1,2,4,1);
-
- VERIFY_IS_EQUAL(tensor.coeff({1,2,4,1}), tensor.coeff(coeff));
- VERIFY_IS_EQUAL(tensor.coeffRef({1,2,4,1}), tensor.coeffRef(coeff));
-#endif
-}
-
-
-template <int DataLayout>
-static void test_sizes_as_index()
-{
-#ifdef EIGEN_HAS_SFINAE
- Tensor<float, 4, DataLayout> tensor(2, 3, 5, 7);
- tensor.setRandom();
-
- DSizes<ptrdiff_t, 4> coeff(1,2,4,1);
- Sizes<1,2,4,1> coeffC;
-
- VERIFY_IS_EQUAL(tensor.coeff(coeffC), tensor.coeff(coeff));
- VERIFY_IS_EQUAL(tensor.coeffRef(coeffC), tensor.coeffRef(coeff));
-#endif
-}
-
-
-void test_cxx11_tensor_custom_index() {
- test_map_as_index<ColMajor>();
- test_map_as_index<RowMajor>();
- test_matrix_as_index<ColMajor>();
- test_matrix_as_index<RowMajor>();
- test_varlist_as_index<ColMajor>();
- test_varlist_as_index<RowMajor>();
- test_sizes_as_index<ColMajor>();
- test_sizes_as_index<RowMajor>();
-}