concat_op.cpp 1.7 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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. */
E
eclipsess 已提交
14 15 16 17 18 19 20 21

#include "concat_op.h"

namespace paddle_mobile {
namespace operators {

template <typename Dtype, typename T>
void ConcatOp<Dtype, T>::InferShape() const {
22 23
  auto inputs = param_.Inputs();
  const size_t n = inputs.size();
E
eclipsess 已提交
24

25 26 27 28 29
  std::vector<DDim> inputs_dims;
  inputs_dims.reserve(n);
  for (int i = 0; i < n; i++) {
    inputs_dims.push_back(inputs[i]->dims());
  }
E
eclipsess 已提交
30

31
  auto axis = static_cast<size_t>(param_.Axis());
E
eclipsess 已提交
32

33 34 35 36
  if (n == 1) {
    DLOG << "Warning: concat op have only one input, "
            "may waste memory";
  }
E
eclipsess 已提交
37

38 39 40 41 42 43 44 45 46 47
  /// add all dim[axis] and check other dims if equal.
  auto out_dims = inputs_dims[0];
  int in_zero_dims_size = out_dims.size();
  for (size_t i = 1; i < n; i++) {
    for (size_t j = 0; j < in_zero_dims_size; j++) {
      if (j == axis) {
        out_dims[axis] += inputs_dims[i][j];
      } else {
        assert(out_dims[j] == inputs_dims[i][j]);
      }
E
eclipsess 已提交
48
    }
49
  }
E
eclipsess 已提交
50

51 52 53
  if (out_dims[axis] < 0) {
    out_dims[axis] = -1;
  }
E
eclipsess 已提交
54

55
  param_.Out()->Resize(out_dims);
E
eclipsess 已提交
56 57 58
}
template class ConcatOp<CPU, float>;

朔-望's avatar
朔-望 已提交
59 60
}  // namespace operators
}  // namespace paddle_mobile
E
eclipsess 已提交
61 62 63 64

namespace ops = paddle_mobile::operators;
USE_OP(concat);
REGISTER_OPERATOR(concat, ops::ConcatOp);