2014-06-07 07:25:16 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2014 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 <Eigen/CXX11/Tensor>
|
|
|
|
|
|
|
|
using Eigen::Tensor;
|
2014-06-11 01:31:29 +08:00
|
|
|
using Eigen::DefaultDevice;
|
2014-06-07 07:25:16 +08:00
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
template <int DataLayout>
|
2014-06-07 07:25:16 +08:00
|
|
|
static void test_evals()
|
|
|
|
{
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 2, DataLayout> input(3, 3);
|
|
|
|
Tensor<float, 1, DataLayout> kernel(2);
|
2014-06-07 07:25:16 +08:00
|
|
|
|
|
|
|
input.setRandom();
|
|
|
|
kernel.setRandom();
|
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 2, DataLayout> result(2,3);
|
2014-06-07 07:25:16 +08:00
|
|
|
result.setZero();
|
2015-02-28 19:01:19 +08:00
|
|
|
Eigen::array<Tensor<float, 2>::Index, 1> dims3{{0}};
|
2014-06-07 07:25:16 +08:00
|
|
|
|
2014-06-11 01:31:29 +08:00
|
|
|
typedef TensorEvaluator<decltype(input.convolve(kernel, dims3)), DefaultDevice> Evaluator;
|
|
|
|
Evaluator eval(input.convolve(kernel, dims3), DefaultDevice());
|
2014-06-07 07:25:16 +08:00
|
|
|
eval.evalTo(result.data());
|
2014-06-11 01:31:29 +08:00
|
|
|
EIGEN_STATIC_ASSERT(Evaluator::NumDims==2ul, YOU_MADE_A_PROGRAMMING_MISTAKE);
|
2014-06-07 07:25:16 +08:00
|
|
|
VERIFY_IS_EQUAL(eval.dimensions()[0], 2);
|
|
|
|
VERIFY_IS_EQUAL(eval.dimensions()[1], 3);
|
|
|
|
|
|
|
|
VERIFY_IS_APPROX(result(0,0), input(0,0)*kernel(0) + input(1,0)*kernel(1)); // index 0
|
|
|
|
VERIFY_IS_APPROX(result(0,1), input(0,1)*kernel(0) + input(1,1)*kernel(1)); // index 2
|
|
|
|
VERIFY_IS_APPROX(result(0,2), input(0,2)*kernel(0) + input(1,2)*kernel(1)); // index 4
|
|
|
|
VERIFY_IS_APPROX(result(1,0), input(1,0)*kernel(0) + input(2,0)*kernel(1)); // index 1
|
|
|
|
VERIFY_IS_APPROX(result(1,1), input(1,1)*kernel(0) + input(2,1)*kernel(1)); // index 3
|
|
|
|
VERIFY_IS_APPROX(result(1,2), input(1,2)*kernel(0) + input(2,2)*kernel(1)); // index 5
|
|
|
|
}
|
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
template <int DataLayout>
|
2014-06-07 07:25:16 +08:00
|
|
|
static void test_expr()
|
|
|
|
{
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 2, DataLayout> input(3, 3);
|
|
|
|
Tensor<float, 2, DataLayout> kernel(2, 2);
|
2014-06-07 07:25:16 +08:00
|
|
|
input.setRandom();
|
|
|
|
kernel.setRandom();
|
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 2, DataLayout> result(2,2);
|
2015-04-17 03:29:16 +08:00
|
|
|
Eigen::array<ptrdiff_t, 2> dims;
|
|
|
|
dims[0] = 0;
|
|
|
|
dims[1] = 1;
|
2014-06-07 07:25:16 +08:00
|
|
|
result = input.convolve(kernel, dims);
|
|
|
|
|
|
|
|
VERIFY_IS_APPROX(result(0,0), input(0,0)*kernel(0,0) + input(0,1)*kernel(0,1) +
|
|
|
|
input(1,0)*kernel(1,0) + input(1,1)*kernel(1,1));
|
|
|
|
VERIFY_IS_APPROX(result(0,1), input(0,1)*kernel(0,0) + input(0,2)*kernel(0,1) +
|
|
|
|
input(1,1)*kernel(1,0) + input(1,2)*kernel(1,1));
|
|
|
|
VERIFY_IS_APPROX(result(1,0), input(1,0)*kernel(0,0) + input(1,1)*kernel(0,1) +
|
|
|
|
input(2,0)*kernel(1,0) + input(2,1)*kernel(1,1));
|
|
|
|
VERIFY_IS_APPROX(result(1,1), input(1,1)*kernel(0,0) + input(1,2)*kernel(0,1) +
|
|
|
|
input(2,1)*kernel(1,0) + input(2,2)*kernel(1,1));
|
|
|
|
}
|
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
template <int DataLayout>
|
2014-10-14 08:02:09 +08:00
|
|
|
static void test_modes() {
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> input(3);
|
|
|
|
Tensor<float, 1, DataLayout> kernel(3);
|
2014-10-14 08:02:09 +08:00
|
|
|
input(0) = 1.0f;
|
|
|
|
input(1) = 2.0f;
|
|
|
|
input(2) = 3.0f;
|
|
|
|
kernel(0) = 0.5f;
|
|
|
|
kernel(1) = 1.0f;
|
|
|
|
kernel(2) = 0.0f;
|
|
|
|
|
2015-04-17 03:29:16 +08:00
|
|
|
Eigen::array<ptrdiff_t, 1> dims;
|
|
|
|
dims[0] = 0;
|
2014-10-14 08:02:09 +08:00
|
|
|
Eigen::array<std::pair<ptrdiff_t, ptrdiff_t>, 1> padding;
|
|
|
|
|
|
|
|
// Emulate VALID mode (as defined in
|
|
|
|
// http://docs.scipy.org/doc/numpy/reference/generated/numpy.convolve.html).
|
|
|
|
padding[0] = std::make_pair(0, 0);
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> valid(1);
|
2014-10-14 08:02:09 +08:00
|
|
|
valid = input.pad(padding).convolve(kernel, dims);
|
|
|
|
VERIFY_IS_EQUAL(valid.dimension(0), 1);
|
|
|
|
VERIFY_IS_APPROX(valid(0), 2.5f);
|
|
|
|
|
|
|
|
// Emulate SAME mode (as defined in
|
|
|
|
// http://docs.scipy.org/doc/numpy/reference/generated/numpy.convolve.html).
|
|
|
|
padding[0] = std::make_pair(1, 1);
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> same(3);
|
2014-10-14 08:02:09 +08:00
|
|
|
same = input.pad(padding).convolve(kernel, dims);
|
|
|
|
VERIFY_IS_EQUAL(same.dimension(0), 3);
|
|
|
|
VERIFY_IS_APPROX(same(0), 1.0f);
|
|
|
|
VERIFY_IS_APPROX(same(1), 2.5f);
|
|
|
|
VERIFY_IS_APPROX(same(2), 4.0f);
|
|
|
|
|
|
|
|
// Emulate FULL mode (as defined in
|
|
|
|
// http://docs.scipy.org/doc/numpy/reference/generated/numpy.convolve.html).
|
|
|
|
padding[0] = std::make_pair(2, 2);
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> full(5);
|
2014-10-14 08:02:09 +08:00
|
|
|
full = input.pad(padding).convolve(kernel, dims);
|
|
|
|
VERIFY_IS_EQUAL(full.dimension(0), 5);
|
|
|
|
VERIFY_IS_APPROX(full(0), 0.0f);
|
|
|
|
VERIFY_IS_APPROX(full(1), 1.0f);
|
|
|
|
VERIFY_IS_APPROX(full(2), 2.5f);
|
|
|
|
VERIFY_IS_APPROX(full(3), 4.0f);
|
|
|
|
VERIFY_IS_APPROX(full(4), 1.5f);
|
|
|
|
}
|
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
template <int DataLayout>
|
2014-10-14 08:02:09 +08:00
|
|
|
static void test_strides() {
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> input(13);
|
|
|
|
Tensor<float, 1, DataLayout> kernel(3);
|
2014-10-14 08:02:09 +08:00
|
|
|
input.setRandom();
|
|
|
|
kernel.setRandom();
|
|
|
|
|
2015-04-17 03:29:16 +08:00
|
|
|
Eigen::array<ptrdiff_t, 1> dims;
|
|
|
|
dims[0] = 0;
|
|
|
|
Eigen::array<ptrdiff_t, 1> stride_of_3;
|
|
|
|
stride_of_3[0] = 3;
|
|
|
|
Eigen::array<ptrdiff_t, 1> stride_of_2;
|
|
|
|
stride_of_2[0] = 2;
|
2014-10-14 08:02:09 +08:00
|
|
|
|
2015-04-01 00:08:08 +08:00
|
|
|
Tensor<float, 1, DataLayout> result;
|
2014-10-14 08:02:09 +08:00
|
|
|
result = input.stride(stride_of_3).convolve(kernel, dims).stride(stride_of_2);
|
|
|
|
|
|
|
|
VERIFY_IS_EQUAL(result.dimension(0), 2);
|
|
|
|
VERIFY_IS_APPROX(result(0), (input(0)*kernel(0) + input(3)*kernel(1) +
|
|
|
|
input(6)*kernel(2)));
|
|
|
|
VERIFY_IS_APPROX(result(1), (input(6)*kernel(0) + input(9)*kernel(1) +
|
|
|
|
input(12)*kernel(2)));
|
|
|
|
}
|
|
|
|
|
2014-06-07 07:25:16 +08:00
|
|
|
void test_cxx11_tensor_convolution()
|
|
|
|
{
|
2015-04-01 00:08:08 +08:00
|
|
|
CALL_SUBTEST(test_evals<ColMajor>());
|
|
|
|
CALL_SUBTEST(test_evals<RowMajor>());
|
|
|
|
CALL_SUBTEST(test_expr<ColMajor>());
|
|
|
|
CALL_SUBTEST(test_expr<RowMajor>());
|
|
|
|
CALL_SUBTEST(test_modes<ColMajor>());
|
|
|
|
CALL_SUBTEST(test_modes<RowMajor>());
|
|
|
|
CALL_SUBTEST(test_strides<ColMajor>());
|
|
|
|
CALL_SUBTEST(test_strides<RowMajor>());
|
2014-06-07 07:25:16 +08:00
|
|
|
}
|