concat_kernel.cc 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2022 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.

15
#include "paddle/phi/kernels/concat_kernel.h"
16

17
#include "paddle/phi/backends/cpu/cpu_context.h"
18
#include "paddle/phi/common/bfloat16.h"
19
#include "paddle/phi/common/complex.h"
20 21 22 23
#include "paddle/phi/common/scalar.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/lod_utils.h"
L
Leo Chen 已提交
24
#include "paddle/phi/kernels/funcs/concat_and_split_functor.h"
25
#include "paddle/phi/kernels/funcs/concat_funcs.h"
26
#include "paddle/phi/kernels/funcs/strided_memcpy.h"
27

28
namespace phi {
29 30 31

template <typename T, typename Context>
void ConcatKernel(const Context& dev_ctx,
32
                  const std::vector<const DenseTensor*>& x,
33 34 35 36
                  const Scalar& axis_scalar,
                  DenseTensor* out) {
  int64_t axis = axis_scalar.to<int64_t>();

37
  axis = phi::funcs::ComputeAxis(axis, x[0]->dims().size());
38

39
  std::vector<phi::DDim> x_dims;
40
  x_dims.reserve(x.size());
41
  for (size_t i = 0; i < x.size(); ++i) {
42
    x_dims.push_back(x[i]->dims());
43 44
  }

45
  phi::DDim out_dims = phi::funcs::ComputeAndCheckShape(true, x_dims, axis);
46
  out->Resize(out_dims);
47
  dev_ctx.template Alloc<T>(out);
48 49

  // If axis is 0, the lod of the output is not the same as inputs.
50 51
  if (axis == 0 && x[0]->lod().size() > 0) {
    size_t lod_size_0 = x[0]->lod().size();
52 53
    size_t lod_size = lod_size_0;
    for (size_t i = 1; i < x.size(); ++i) {
54
      if (x[i]->lod().size() > 0) {
55
        PADDLE_ENFORCE_EQ(
56
            x[i]->lod().size(),
57
            lod_size_0,
58
            phi::errors::Unimplemented(
59 60 61 62 63
                "The lod level of all input LoDTensors should be same. "
                "Maybe different lod level of input LoDTensors can concat,"
                "it is not supported currently. The lod level of %dth input "
                "is %d and first input is %d.",
                i,
64
                x[i]->lod().size(),
65 66 67 68 69 70 71 72 73
                lod_size_0));
      } else {
        lod_size = 0;
        break;
      }
    }
    if (lod_size) {
      auto* out_lod = out->mutable_lod();
      for (size_t i = 1; i < x.size(); ++i) {
74
        auto in_lod = phi::ConvertToLengthBasedLoD(x[i]->lod());
75
        phi::AppendLoD(out_lod, in_lod);
76 77 78 79 80 81 82
      }
    }
  }

  // Sometimes direct copies will be faster, this maybe need deeply analysis.
  if (axis == 0 && x.size() < 10) {
    size_t output_offset = 0;
83 84
    for (const auto* in : x) {
      if (in->numel() == 0UL) {
85 86
        continue;
      }
87
      auto in_stride = phi::stride_numel(in->dims());
88
      auto out_stride = phi::stride_numel(out->dims());
89 90 91 92 93 94 95
      phi::funcs::StridedNumelCopyWithAxis<T>(dev_ctx,
                                              axis,
                                              out->data<T>() + output_offset,
                                              out_stride,
                                              in->data<T>(),
                                              in_stride,
                                              in_stride[axis]);
96 97 98
      output_offset += in_stride[axis];
    }
  } else {
99
    // TODO(chenweihang): concat functor support vector<DenseTensor*> input
100
    std::vector<phi::DenseTensor> inputs;
101
    inputs.reserve(x.size());
102
    for (size_t j = 0; j < x.size(); ++j) {
103 104
      if (x[j]->numel() > 0) {
        inputs.emplace_back(*x[j]);
105 106 107 108
      } else {
        continue;
      }
    }
L
Leo Chen 已提交
109 110
    phi::funcs::ConcatFunctor<Context, T> functor;
    functor(dev_ctx, inputs, axis, out);
111 112 113
  }
}

114
}  // namespace phi
115

116
PD_REGISTER_KERNEL(concat,
117 118
                   CPU,
                   ALL_LAYOUT,
119
                   phi::ConcatKernel,
120 121 122 123 124 125
                   float,
                   double,
                   bool,
                   int64_t,
                   int,
                   uint8_t,
126
                   int8_t,
127
                   phi::dtype::float16,
128
                   phi::dtype::bfloat16,
129 130
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}