conv_op.cpp 2.9 KB
Newer Older
朔-望's avatar
朔-望 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================*/

Z
zhaojiaying01 已提交
19
#include "operators/conv_op.h"
Z
zhaojiaying01 已提交
20
#include <vector>
朔-望's avatar
朔-望 已提交
21 22
#include "framework/data_type.h"
#include "framework/op_proto_maker.h"
Z
zhaojiaying01 已提交
23
#include "framework/op_registry.h"
朔-望's avatar
朔-望 已提交
24 25

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
26
namespace operators {
朔-望's avatar
朔-望 已提交
27

朔-望's avatar
朔-望 已提交
28 29
int ConvOutputSize(int input_size, int filter_size, int dilation, int padding,
                   int stride) {
30 31 32
  const int dkernel = dilation * (filter_size - 1) + 1;
  int output_size = (input_size + 2 * padding - dkernel) / stride + 1;
  return output_size;
朔-望's avatar
朔-望 已提交
33
}
朔-望's avatar
朔-望 已提交
34

朔-望's avatar
朔-望 已提交
35
template <typename Dtype, typename T>
朔-望's avatar
朔-望 已提交
36
void ConvOp<Dtype, T>::InferShape() const {
37
  //  std::cout << " begin get dims: " << std::endl;
朔-望's avatar
朔-望 已提交
38

39
  auto in_dims = param_.Input()->dims();
朔-望's avatar
朔-望 已提交
40

41
  //  std::cout << " end get in dims: " << std::endl;
朔-望's avatar
朔-望 已提交
42

43
  //  std::cout << " in_dims: " << in_dims << std::endl;
朔-望's avatar
朔-望 已提交
44

45
  //  std::cout << " begin get Filter " << std::endl;
朔-望's avatar
朔-望 已提交
46

47
  auto filter_dims = param_.Filter()->dims();
朔-望's avatar
朔-望 已提交
48

49
  //  std::cout << " end get Filter " << std::endl;
朔-望's avatar
朔-望 已提交
50

51
  //  std::cout << " begin get Attrs " << std::endl;
朔-望's avatar
朔-望 已提交
52

53
  const std::vector<int> &strides = param_.Strides();
朔-望's avatar
朔-望 已提交
54

55
  //  std::cout << " end get Attrs " << strides[0] << std::endl;
朔-望's avatar
朔-望 已提交
56

57
  std::vector<int> paddings = param_.Paddings();
朔-望's avatar
朔-望 已提交
58

59
  int groups = param_.Groups();
朔-望's avatar
朔-望 已提交
60

61
  std::vector<int> dilations = param_.Dilations();
朔-望's avatar
朔-望 已提交
62

63 64 65 66 67 68
  std::vector<int64_t> output_shape({in_dims[0], filter_dims[0]});
  for (size_t i = 0; i < strides.size(); ++i) {
    output_shape.push_back(ConvOutputSize(in_dims[i + 2], filter_dims[i + 2],
                                          dilations[i], paddings[i],
                                          strides[i]));
  }
朔-望's avatar
朔-望 已提交
69

70 71
  framework::DDim ddim = framework::make_ddim(output_shape);
  param_.Output()->Resize(ddim);
朔-望's avatar
朔-望 已提交
72
}
朔-望's avatar
朔-望 已提交
73

朔-望's avatar
朔-望 已提交
74
template class ConvOp<CPU, float>;
朔-望's avatar
朔-望 已提交
75

朔-望's avatar
朔-望 已提交
76 77
}  // namespace operators
}  // namespace paddle_mobile
Z
zhaojiaying01 已提交
78 79 80 81

namespace ops = paddle_mobile::operators;
USE_OP(conv2d);
REGISTER_OPERATOR(conv2d, ops::ConvOp);