concat_op.cpp 2.0 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

L
liuruilong 已提交
15 16
#ifdef CONCAT_OP

H
hanbuhe 已提交
17 18 19
#include <vector>

#include "operators/concat_op.h"
E
eclipsess 已提交
20 21 22 23 24 25

namespace paddle_mobile {
namespace operators {

template <typename Dtype, typename T>
void ConcatOp<Dtype, T>::InferShape() const {
L
liuruilong 已提交
26
  auto inputs = this->param_.Inputs();
27
  const size_t n = inputs.size();
E
eclipsess 已提交
28

29 30 31 32 33
  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 已提交
34

L
liuruilong 已提交
35
  auto axis = static_cast<size_t>(this->param_.Axis());
E
eclipsess 已提交
36

37 38 39 40
  if (n == 1) {
    DLOG << "Warning: concat op have only one input, "
            "may waste memory";
  }
E
eclipsess 已提交
41

42 43 44 45 46 47 48 49 50 51
  /// 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 已提交
52
    }
53
  }
E
eclipsess 已提交
54

55 56 57
  if (out_dims[axis] < 0) {
    out_dims[axis] = -1;
  }
E
eclipsess 已提交
58

L
liuruilong 已提交
59
  this->param_.Out()->Resize(out_dims);
E
eclipsess 已提交
60 61
}

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

namespace ops = paddle_mobile::operators;
L
for  
liuruilong 已提交
66 67 68
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU(concat, ops::ConcatOp);
#endif
Y
yangfei 已提交
69 70 71
#ifdef PADDLE_MOBILE_CL
REGISTER_OPERATOR_CL(concat, ops::ConcatOp);
#endif
L
for  
liuruilong 已提交
72
#ifdef PADDLE_MOBILE_MALI_GPU
S
sharper 已提交
73
REGISTER_OPERATOR_MALI_GPU(concat, ops::ConcatOp);
L
for  
liuruilong 已提交
74 75
#endif
#ifdef PADDLE_MOBILE_FPGA
H
hanbuhe 已提交
76
REGISTER_OPERATOR_FPGA(concat, ops::ConcatOp);
L
for  
liuruilong 已提交
77
#endif
L
liuruilong 已提交
78 79

#endif