vol2col_test.cc 4.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
C
chengduoZH 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/math/vol2col.h"
C
chengduoZH 已提交
16 17 18
#include <gtest/gtest.h>
#include <iostream>

Q
QI JUN 已提交
19
template <typename DeviceContext, typename Place>
C
chengduoZH 已提交
20 21
void testVol2col() {
  paddle::framework::Tensor input;
C
chengduoZH 已提交
22 23
  paddle::framework::Tensor input_tmp;
  paddle::framework::Tensor output;
C
chengduoZH 已提交
24 25 26
  paddle::framework::Tensor output_tmp;

  auto* place = new Place();
Q
QI JUN 已提交
27
  DeviceContext* context = new DeviceContext(*place);
C
chengduoZH 已提交
28 29 30 31 32 33 34

  /**
   * input = [[0, 1, 2,
   *          3, 4, 5]
   *          [6, 7, 8,
   *          9, 10, 11]]
   *
C
chengduoZH 已提交
35 36 37 38 39 40 41 42
   * output = [0, 1
   *           1, 2
   *           3, 4
   *           4, 5
   *           6, 7
   *           7, 8
   *           9, 10
   *           10, 11]
C
chengduoZH 已提交
43 44 45 46 47 48 49 50 51 52 53
   *
   * col2vol = [[0, 2, 2,
   *             3, 8, 5]
   *            [6, 14, 8,
   *             9, 20, 11]]
   *
   */
  int input_depth = 2;
  int input_height = 2;
  int input_width = 3;
  int filter_size = 2;
C
chengduoZH 已提交
54 55 56 57 58 59 60 61 62
  std::vector<int> strides({1, 1, 1});
  std::vector<int> paddings({0, 0, 0});
  std::vector<int> dilations({1, 1, 1});
  int output_depth =
      (input_depth - filter_size + 2 * paddings[0]) / strides[0] + 1;
  int output_height =
      (input_height - filter_size + 2 * paddings[1]) / strides[1] + 1;
  int output_width =
      (input_width - filter_size + 2 * paddings[2]) / strides[2] + 1;
C
chengduoZH 已提交
63 64 65 66 67 68 69 70 71 72 73

  // Vol2Col test
  float* input_ptr =
      input_tmp.mutable_data<float>({1, input_depth, input_height, input_width},
                                    paddle::platform::CPUPlace());
  float arr[12] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
  memcpy(input_ptr, arr, 12 * sizeof(float));

  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
F
fengjiayi 已提交
74
    paddle::framework::TensorCopy(input_tmp, *place, *context, &input, true);
C
chengduoZH 已提交
75
  }
C
chengduoZH 已提交
76 77 78
  output.mutable_data<float>({1, filter_size, filter_size, filter_size,
                              output_depth, output_height, output_width},
                             *place);
C
chengduoZH 已提交
79

Q
QI JUN 已提交
80
  paddle::operators::math::Vol2ColFunctor<DeviceContext, float> vol2col;
C
chengduoZH 已提交
81
  vol2col(*context, input, dilations, strides, paddings, &output);
C
chengduoZH 已提交
82

C
chengduoZH 已提交
83
  float vol_2_col[] = {0, 1, 1, 2, 3, 4, 4, 5, 6, 7, 7, 8, 9, 10, 10, 11};
C
chengduoZH 已提交
84 85
  float* out_cfo_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
C
chengduoZH 已提交
86
    out_cfo_ptr = output.data<float>();
C
chengduoZH 已提交
87
  } else {
F
fengjiayi 已提交
88 89
    TensorCopy(output, paddle::platform::CPUPlace(), *context, &output_tmp,
               true);
C
chengduoZH 已提交
90 91 92
    out_cfo_ptr = output_tmp.data<float>();
  }

C
chengduoZH 已提交
93 94 95
  for (int i = 0; i < 16; ++i) {
    EXPECT_EQ(out_cfo_ptr[i], vol_2_col[i]);
  }
C
chengduoZH 已提交
96 97

  // Col2Vol test
C
chengduoZH 已提交
98
  float col_2_vol[] = {0, 2, 2, 3, 8, 5, 6, 14, 8, 9, 20, 11};
C
chengduoZH 已提交
99 100 101 102
  memset(input_ptr, 0, 12 * sizeof(float));
  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
F
fengjiayi 已提交
103
    TensorCopy(input_tmp, *place, *context, &input, true);
C
chengduoZH 已提交
104 105
  }

Q
QI JUN 已提交
106
  paddle::operators::math::Col2VolFunctor<DeviceContext, float> col2vol;
C
chengduoZH 已提交
107
  col2vol(*context, output, dilations, strides, paddings, &input);
C
chengduoZH 已提交
108

C
chengduoZH 已提交
109
  float* in_ptr;
C
chengduoZH 已提交
110
  if (paddle::platform::is_cpu_place(*place)) {
C
chengduoZH 已提交
111
    in_ptr = input.data<float>();
C
chengduoZH 已提交
112
  } else {
F
fengjiayi 已提交
113
    TensorCopy(input, paddle::platform::CPUPlace(), *context, &input_tmp, true);
C
chengduoZH 已提交
114
    in_ptr = input_tmp.data<float>();
C
chengduoZH 已提交
115 116
  }

C
chengduoZH 已提交
117
  for (int i = 0; i < 12; ++i) {
C
chengduoZH 已提交
118
    EXPECT_EQ(in_ptr[i], col_2_vol[i]);
C
chengduoZH 已提交
119
  }
C
chengduoZH 已提交
120 121 122
}

TEST(math, vol2col) {
Q
QI JUN 已提交
123
  testVol2col<paddle::platform::CPUDeviceContext, paddle::platform::CPUPlace>();
C
chengduoZH 已提交
124
#ifdef PADDLE_WITH_CUDA
Q
QI JUN 已提交
125
  testVol2col<paddle::platform::CUDADeviceContext,
D
dzhwinter 已提交
126
              paddle::platform::CUDAPlace>();
C
chengduoZH 已提交
127
#endif  // PADDLE_WITH_CUDA
C
chengduoZH 已提交
128
}