pad.cpp 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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 "operators/math/pad.h"

namespace paddle_mobile {
namespace operators {
namespace math {

template <typename T>
class PadFunctor<CPU, T> {
 public:
24 25 26
  void operator()(const framework::Tensor &input, const int pad_top,
                  const int pad_bottom, const int pad_left, const int pad_right,
                  framework::Tensor *output) {
27 28
    const T *in_data = input.data<T>();
    T *out_data = output->mutable_data<T>();
29
    // should check output shape is valid for such pad parameters
30 31 32 33 34 35 36
    const framework::DDim &input_shape = input.dims();
    const framework::DDim &output_shape = output->dims();
    // fill output with 0
    memset(out_data, 0, sizeof(T) * output->numel());
    // should make sure the shape of output is match with input
    for (int i = 0; i < input_shape[0]; ++i) {
      for (int c = 0; c < input_shape[1]; ++c) {
37
        out_data += pad_top * output_shape[3];
38
        for (int h = 0; h < input_shape[2]; ++h) {
39
          memcpy(out_data + pad_left, in_data, sizeof(T) * input_shape[3]);
40 41 42
          out_data += output_shape[3];
          in_data += input_shape[3];
        }
43
        out_data += pad_bottom * output_shape[3];
44 45 46 47 48 49 50 51 52 53 54
      }
    }
  }
};

template class PadFunctor<CPU, float>;
template class PadFunctor<CPU, int8_t>;

}  // namespace math
}  // namespace operators
}  // namespace paddle_mobile