From f41831e445f3fdd9dc324561135b2a19eafd9a56 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Mon, 31 Aug 2015 08:18:53 -0700 Subject: Added support for argmax/argmin --- unsupported/test/cxx11_tensor_argmax.cpp | 294 +++++++++++++++++++++++++++++++ 1 file changed, 294 insertions(+) create mode 100644 unsupported/test/cxx11_tensor_argmax.cpp (limited to 'unsupported/test/cxx11_tensor_argmax.cpp') diff --git a/unsupported/test/cxx11_tensor_argmax.cpp b/unsupported/test/cxx11_tensor_argmax.cpp new file mode 100644 index 000000000..4c532409e --- /dev/null +++ b/unsupported/test/cxx11_tensor_argmax.cpp @@ -0,0 +1,294 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2015 Eugene Brevdo +// 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 + +using Eigen::Tensor; +using Eigen::array; +using Eigen::Tuple; + +template +static void test_simple_index_tuples() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor, 4, DataLayout> index_tuples(2,3,5,7); + index_tuples = tensor.index_tuples(); + + for (DenseIndex n = 0; n < 2*3*5*7; ++n) { + const Tuple& v = index_tuples.coeff(n); + VERIFY_IS_EQUAL(v.first, n); + VERIFY_IS_EQUAL(v.second, tensor.coeff(n)); + } +} + +template +static void test_index_tuples_dim() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor, 4, DataLayout> index_tuples(2,3,5,7); + + index_tuples = tensor.index_tuples(); + + for (Eigen::DenseIndex n = 0; n < tensor.size(); ++n) { + const Tuple& v = index_tuples(n); //(i, j, k, l); + VERIFY_IS_EQUAL(v.first, n); + VERIFY_IS_EQUAL(v.second, tensor(n)); + } +} + +template +static void test_argmax_tuple_reducer() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor, 4, DataLayout> index_tuples(2,3,5,7); + index_tuples = tensor.index_tuples(); + + Tensor, 1, DataLayout> reduced(1); + DimensionList dims; + reduced = index_tuples.reduce( + dims, internal::ArgMaxTupleReducer>()); + + Tensor maxi = tensor.maximum(); + + VERIFY_IS_EQUAL(maxi(0), reduced(0).second); + + array reduce_dims; + for (int d = 0; d < 3; ++d) reduce_dims[d] = d; + Tensor, 1, DataLayout> reduced_by_dims(7); + reduced_by_dims = index_tuples.reduce( + reduce_dims, internal::ArgMaxTupleReducer>()); + + Tensor max_by_dims = tensor.maximum(reduce_dims); + + for (int l = 0; l < 7; ++l) { + VERIFY_IS_EQUAL(max_by_dims(l), reduced_by_dims(l).second); + } +} + +template +static void test_argmin_tuple_reducer() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor, 4, DataLayout> index_tuples(2,3,5,7); + index_tuples = tensor.index_tuples(); + + Tensor, 1, DataLayout> reduced(1); + DimensionList dims; + reduced = index_tuples.reduce( + dims, internal::ArgMinTupleReducer>()); + + Tensor mini = tensor.minimum(); + + VERIFY_IS_EQUAL(mini(0), reduced(0).second); + + array reduce_dims; + for (int d = 0; d < 3; ++d) reduce_dims[d] = d; + Tensor, 1, DataLayout> reduced_by_dims(7); + reduced_by_dims = index_tuples.reduce( + reduce_dims, internal::ArgMinTupleReducer>()); + + Tensor min_by_dims = tensor.minimum(reduce_dims); + + for (int l = 0; l < 7; ++l) { + VERIFY_IS_EQUAL(min_by_dims(l), reduced_by_dims(l).second); + } +} + +template +static void test_simple_argmax() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + tensor(0,0,0,0) = 10.0; + + Tensor tensor_argmax(1); + + tensor_argmax = tensor.argmax(); + + VERIFY_IS_EQUAL(tensor_argmax(0), 0); + + tensor(1,2,4,6) = 20.0; + + tensor_argmax = tensor.argmax(); + + VERIFY_IS_EQUAL(tensor_argmax(0), 2*3*5*7 - 1); +} + +template +static void test_simple_argmin() +{ + Tensor tensor(2,3,5,7); + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + tensor(0,0,0,0) = -10.0; + + Tensor tensor_argmin(1); + + tensor_argmin = tensor.argmin(); + + VERIFY_IS_EQUAL(tensor_argmin(0), 0); + + tensor(1,2,4,6) = -20.0; + + tensor_argmin = tensor.argmin(); + + VERIFY_IS_EQUAL(tensor_argmin(0), 2*3*5*7 - 1); +} + +template +static void test_argmax_dim() +{ + Tensor tensor(2,3,5,7); + std::vector dims {2, 3, 5, 7}; + + for (int dim = 0; dim < 4; ++dim) { + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor tensor_argmax; + array ix; + for (int i = 0; i < 2; ++i) { + for (int j = 0; j < 3; ++j) { + for (int k = 0; k < 5; ++k) { + for (int l = 0; l < 7; ++l) { + ix[0] = i; ix[1] = j; ix[2] = k; ix[3] = l; + if (ix[dim] != 0) continue; + // suppose dim == 1, then for all i, k, l, set tensor(i, 0, k, l) = 10.0 + tensor(ix) = 10.0; + } + } + } + } + + tensor_argmax = tensor.argmax(dim); + + VERIFY_IS_EQUAL(tensor_argmax.dimensions().TotalSize(), + size_t(2*3*5*7 / tensor.dimension(dim))); + for (size_t n = 0; n < tensor_argmax.dimensions().TotalSize(); ++n) { + // Expect max to be in the first index of the reduced dimension + VERIFY_IS_EQUAL(tensor_argmax.data()[n], 0); + } + + for (int i = 0; i < 2; ++i) { + for (int j = 0; j < 3; ++j) { + for (int k = 0; k < 5; ++k) { + for (int l = 0; l < 7; ++l) { + ix[0] = i; ix[1] = j; ix[2] = k; ix[3] = l; + if (ix[dim] != tensor.dimension(dim) - 1) continue; + // suppose dim == 1, then for all i, k, l, set tensor(i, 2, k, l) = 20.0 + tensor(ix) = 20.0; + } + } + } + } + + tensor_argmax = tensor.argmax(dim); + + VERIFY_IS_EQUAL(tensor_argmax.dimensions().TotalSize(), + size_t(2*3*5*7 / tensor.dimension(dim))); + for (size_t n = 0; n < tensor_argmax.dimensions().TotalSize(); ++n) { + // Expect max to be in the last index of the reduced dimension + VERIFY_IS_EQUAL(tensor_argmax.data()[n], tensor.dimension(dim) - 1); + } + } +} + +template +static void test_argmin_dim() +{ + Tensor tensor(2,3,5,7); + std::vector dims {2, 3, 5, 7}; + + for (int dim = 0; dim < 4; ++dim) { + tensor.setRandom(); + tensor = (tensor + tensor.constant(0.5)).log(); + + Tensor tensor_argmin; + array ix; + for (int i = 0; i < 2; ++i) { + for (int j = 0; j < 3; ++j) { + for (int k = 0; k < 5; ++k) { + for (int l = 0; l < 7; ++l) { + ix[0] = i; ix[1] = j; ix[2] = k; ix[3] = l; + if (ix[dim] != 0) continue; + // suppose dim == 1, then for all i, k, l, set tensor(i, 0, k, l) = -10.0 + tensor(ix) = -10.0; + } + } + } + } + + tensor_argmin = tensor.argmin(dim); + + VERIFY_IS_EQUAL(tensor_argmin.dimensions().TotalSize(), + size_t(2*3*5*7 / tensor.dimension(dim))); + for (size_t n = 0; n < tensor_argmin.dimensions().TotalSize(); ++n) { + // Expect min to be in the first index of the reduced dimension + VERIFY_IS_EQUAL(tensor_argmin.data()[n], 0); + } + + for (int i = 0; i < 2; ++i) { + for (int j = 0; j < 3; ++j) { + for (int k = 0; k < 5; ++k) { + for (int l = 0; l < 7; ++l) { + ix[0] = i; ix[1] = j; ix[2] = k; ix[3] = l; + if (ix[dim] != tensor.dimension(dim) - 1) continue; + // suppose dim == 1, then for all i, k, l, set tensor(i, 2, k, l) = -20.0 + tensor(ix) = -20.0; + } + } + } + } + + tensor_argmin = tensor.argmin(dim); + + VERIFY_IS_EQUAL(tensor_argmin.dimensions().TotalSize(), + size_t(2*3*5*7 / tensor.dimension(dim))); + for (size_t n = 0; n < tensor_argmin.dimensions().TotalSize(); ++n) { + // Expect min to be in the last index of the reduced dimension + VERIFY_IS_EQUAL(tensor_argmin.data()[n], tensor.dimension(dim) - 1); + } + } +} + +void test_cxx11_tensor_argmax() +{ + CALL_SUBTEST(test_simple_index_tuples()); + CALL_SUBTEST(test_simple_index_tuples()); + CALL_SUBTEST(test_index_tuples_dim()); + CALL_SUBTEST(test_index_tuples_dim()); + CALL_SUBTEST(test_argmax_tuple_reducer()); + CALL_SUBTEST(test_argmax_tuple_reducer()); + CALL_SUBTEST(test_argmin_tuple_reducer()); + CALL_SUBTEST(test_argmin_tuple_reducer()); + CALL_SUBTEST(test_simple_argmax()); + CALL_SUBTEST(test_simple_argmax()); + CALL_SUBTEST(test_simple_argmin()); + CALL_SUBTEST(test_simple_argmin()); + CALL_SUBTEST(test_argmax_dim()); + CALL_SUBTEST(test_argmax_dim()); + CALL_SUBTEST(test_argmin_dim()); + CALL_SUBTEST(test_argmin_dim()); +} -- cgit v1.2.3