im2col_test.cc 5.3 KB
Newer Older
H
hedaoyuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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. */

#include "paddle/operators/math/im2col.h"
#include <gtest/gtest.h>
#include <iostream>

H
hedaoyuan 已提交
19 20 21
template <typename Place>
void testIm2col() {
  paddle::framework::Tensor input_tmp;
H
hedaoyuan 已提交
22 23 24
  paddle::framework::Tensor input;
  paddle::framework::Tensor output_cfo;
  paddle::framework::Tensor output_ocf;
H
hedaoyuan 已提交
25
  paddle::framework::Tensor output_tmp;
H
hedaoyuan 已提交
26 27 28 29 30 31 32 33 34 35 36 37

  /**
   * input = [0, 1, 2,
   *          3, 4, 5]
   *
   * output_cfo = [0, 1
   *               1, 2
   *               3, 4
   *               4, 5]
   *
   * output_ocf = [0, 1, 3, 4
   *               1, 2, 4, 5]
38 39 40 41 42 43
   *
   * col2im_cfo = [0, 2, 2
   *               3, 4, 5]
   *
   * col2im_ocf = [0, 2, 2
   *               3, 4, 5]
H
hedaoyuan 已提交
44
   */
H
hedaoyuan 已提交
45 46 47 48 49 50 51 52 53
  int input_height = 2;
  int input_width = 3;
  int filter_size = 2;
  int stride = 1;
  int padding = 0;
  int output_height = (input_height - filter_size + 2 * padding) / stride + 1;
  int output_width = (input_width - filter_size + 2 * padding) / stride + 1;
  float* input_ptr = input_tmp.mutable_data<float>(
      {1, input_height, input_width}, paddle::platform::CPUPlace());
H
hedaoyuan 已提交
54 55
  float arr[6] = {0, 1, 2, 3, 4, 5};
  memcpy(input_ptr, arr, 6 * sizeof(float));
H
hedaoyuan 已提交
56 57

  auto* place = new Place();
58 59 60 61 62 63 64 65 66 67
  paddle::platform::DeviceContext* context;
  if (paddle::platform::is_cpu_place(*place)) {
    context =
        new paddle::platform::CPUDeviceContext(paddle::platform::CPUPlace());
  } else {
#ifdef PADDLE_WITH_CUDA
    context =
        new paddle::platform::CUDADeviceContext(paddle::platform::GPUPlace());
#else
    PADDLE_THROW("no GPU support");
68
#endif  // PADDLE_WITH_CUDA
69
  }
H
hedaoyuan 已提交
70 71 72
  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
73
    input.CopyFrom(input_tmp, *place, *context);
H
hedaoyuan 已提交
74
  }
H
hedaoyuan 已提交
75
  output_cfo.mutable_data<float>(
H
hedaoyuan 已提交
76
      {1, filter_size, filter_size, output_height, output_width}, *place);
H
hedaoyuan 已提交
77
  output_ocf.mutable_data<float>(
H
hedaoyuan 已提交
78
      {output_height, output_width, 1, filter_size, filter_size}, *place);
H
hedaoyuan 已提交
79

80
  // Im2Col
H
hedaoyuan 已提交
81
  paddle::operators::math::Im2ColFunctor<
H
hedaoyuan 已提交
82
      paddle::operators::math::ColFormat::kCFO, Place, float>
H
hedaoyuan 已提交
83 84
      im2col;
  paddle::operators::math::Im2ColFunctor<
H
hedaoyuan 已提交
85
      paddle::operators::math::ColFormat::kOCF, Place, float>
H
hedaoyuan 已提交
86 87
      im2col_ocf;

C
chengduoZH 已提交
88 89 90 91
  im2col(*context, input, output_cfo, stride, stride, padding, padding, padding,
         padding);
  im2col_ocf(*context, input, output_ocf, stride, stride, padding, padding,
             padding, padding);
92 93 94

  float out_cfo_data[] = {0, 1, 1, 2, 3, 4, 4, 5};
  float out_ocf_data[] = {0, 1, 3, 4, 1, 2, 4, 5};
H
hedaoyuan 已提交
95

H
hedaoyuan 已提交
96 97 98 99
  float* out_cfo_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
    out_cfo_ptr = output_cfo.data<float>();
  } else {
100
    output_tmp.CopyFrom(output_cfo, paddle::platform::CPUPlace(), *context);
H
hedaoyuan 已提交
101 102
    out_cfo_ptr = output_tmp.data<float>();
  }
103 104 105
  for (int i = 0; i < 6; ++i) {
    EXPECT_EQ(out_cfo_ptr[i], out_cfo_data[i]);
  }
H
hedaoyuan 已提交
106

H
hedaoyuan 已提交
107 108 109 110
  float* out_ocf_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
    out_ocf_ptr = output_ocf.data<float>();
  } else {
111
    output_tmp.CopyFrom(output_ocf, paddle::platform::CPUPlace(), *context);
H
hedaoyuan 已提交
112 113
    out_ocf_ptr = output_tmp.data<float>();
  }
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
  for (int i = 0; i < 6; ++i) {
    EXPECT_EQ(out_ocf_ptr[i], out_ocf_data[i]);
  }

  // Col2Im: kCFO
  paddle::operators::math::Col2ImFunctor<
      paddle::operators::math::ColFormat::kCFO, Place, float>
      col2im;
  paddle::operators::math::Col2ImFunctor<
      paddle::operators::math::ColFormat::kOCF, Place, float>
      col2im_ocf;
  float col2im_data[] = {0, 2, 2, 3, 8, 5};

  memset(input_ptr, 0, 6 * sizeof(float));
  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
    input.CopyFrom<float>(input_tmp, *place, *context);
  }

C
chengduoZH 已提交
134 135
  col2im(*context, input, output_cfo, stride, stride, padding, padding, padding,
         padding);
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

  float* in_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
    in_ptr = input.data<float>();
  } else {
    input_tmp.CopyFrom<float>(input, paddle::platform::CPUPlace(), *context);
    in_ptr = input_tmp.data<float>();
  }
  for (int i = 0; i < 6; ++i) {
    EXPECT_EQ(in_ptr[i], col2im_data[i]);
  }

  // Col2Im: kOCF
  memset(input_ptr, 0, 6 * sizeof(float));
  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
    input.CopyFrom<float>(input_tmp, *place, *context);
  }

C
chengduoZH 已提交
156 157
  col2im_ocf(*context, input, output_ocf, stride, stride, padding, padding,
             padding, padding);
158 159 160 161 162 163 164 165 166 167

  if (paddle::platform::is_cpu_place(*place)) {
    in_ptr = input.data<float>();
  } else {
    input_tmp.CopyFrom<float>(input, paddle::platform::CPUPlace(), *context);
    in_ptr = input_tmp.data<float>();
  }
  for (int i = 0; i < 6; ++i) {
    EXPECT_EQ(in_ptr[i], col2im_data[i]);
  }
H
hedaoyuan 已提交
168
}
H
hedaoyuan 已提交
169 170 171

TEST(math, im2col) {
  testIm2col<paddle::platform::CPUPlace>();
172
#ifdef PADDLE_WITH_CUDA
H
hedaoyuan 已提交
173 174
  testIm2col<paddle::platform::GPUPlace>();
#endif
175
}