im2col_test.cc 3.9 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 38

  /**
   * 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]
   */
H
hedaoyuan 已提交
39 40 41 42 43 44 45 46 47
  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 已提交
48 49
  float arr[6] = {0, 1, 2, 3, 4, 5};
  memcpy(input_ptr, arr, 6 * sizeof(float));
H
hedaoyuan 已提交
50 51

  auto* place = new Place();
52 53 54 55 56 57 58 59 60 61 62 63
  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");
#endif  // PADDLE_ONLY_CPU
  }
H
hedaoyuan 已提交
64 65 66
  if (paddle::platform::is_cpu_place(*place)) {
    input = input_tmp;
  } else {
67
    input.CopyFrom<float>(input_tmp, *place, *context);
H
hedaoyuan 已提交
68
  }
H
hedaoyuan 已提交
69
  output_cfo.mutable_data<float>(
H
hedaoyuan 已提交
70
      {1, filter_size, filter_size, output_height, output_width}, *place);
H
hedaoyuan 已提交
71
  output_ocf.mutable_data<float>(
H
hedaoyuan 已提交
72
      {output_height, output_width, 1, filter_size, filter_size}, *place);
H
hedaoyuan 已提交
73 74

  paddle::operators::math::Im2ColFunctor<
H
hedaoyuan 已提交
75
      paddle::operators::math::ColFormat::kCFO, Place, float>
H
hedaoyuan 已提交
76 77
      im2col;
  paddle::operators::math::Im2ColFunctor<
H
hedaoyuan 已提交
78
      paddle::operators::math::ColFormat::kOCF, Place, float>
H
hedaoyuan 已提交
79 80
      im2col_ocf;

H
hedaoyuan 已提交
81 82
  im2col(*context, input, output_cfo, stride, stride, padding, padding);
  im2col_ocf(*context, input, output_ocf, stride, stride, padding, padding);
H
hedaoyuan 已提交
83

H
hedaoyuan 已提交
84 85 86 87
  float* out_cfo_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
    out_cfo_ptr = output_cfo.data<float>();
  } else {
88 89
    output_tmp.CopyFrom<float>(output_cfo, paddle::platform::CPUPlace(),
                               *context);
H
hedaoyuan 已提交
90 91
    out_cfo_ptr = output_tmp.data<float>();
  }
H
hedaoyuan 已提交
92 93 94 95 96 97 98 99 100
  EXPECT_EQ(out_cfo_ptr[0], 0);
  EXPECT_EQ(out_cfo_ptr[1], 1);
  EXPECT_EQ(out_cfo_ptr[2], 1);
  EXPECT_EQ(out_cfo_ptr[3], 2);
  EXPECT_EQ(out_cfo_ptr[4], 3);
  EXPECT_EQ(out_cfo_ptr[5], 4);
  EXPECT_EQ(out_cfo_ptr[6], 4);
  EXPECT_EQ(out_cfo_ptr[7], 5);

H
hedaoyuan 已提交
101 102 103 104
  float* out_ocf_ptr;
  if (paddle::platform::is_cpu_place(*place)) {
    out_ocf_ptr = output_ocf.data<float>();
  } else {
105 106
    output_tmp.CopyFrom<float>(output_ocf, paddle::platform::CPUPlace(),
                               *context);
H
hedaoyuan 已提交
107 108
    out_ocf_ptr = output_tmp.data<float>();
  }
H
hedaoyuan 已提交
109 110 111 112 113 114 115 116 117
  EXPECT_EQ(out_ocf_ptr[0], 0);
  EXPECT_EQ(out_ocf_ptr[1], 1);
  EXPECT_EQ(out_ocf_ptr[2], 3);
  EXPECT_EQ(out_ocf_ptr[3], 4);
  EXPECT_EQ(out_ocf_ptr[4], 1);
  EXPECT_EQ(out_ocf_ptr[5], 2);
  EXPECT_EQ(out_ocf_ptr[6], 4);
  EXPECT_EQ(out_ocf_ptr[7], 5);
}
H
hedaoyuan 已提交
118 119 120

TEST(math, im2col) {
  testIm2col<paddle::platform::CPUPlace>();
121
#ifdef PADDLE_WITH_CUDA
H
hedaoyuan 已提交
122 123
  testIm2col<paddle::platform::GPUPlace>();
#endif
124
}