split_kernel.cc 2.4 KB
Newer Older
C
chentianyu03 已提交
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/split_kernel.h"
C
chentianyu03 已提交
16 17

#include "paddle/fluid/operators/strided_memcpy.h"
18 19
#include "paddle/phi/common/float16.h"
#include "paddle/phi/core/kernel_registry.h"
C
chentianyu03 已提交
20

21 22 23
#include "paddle/phi/infermeta/unary.h"
#include "paddle/phi/kernels/cpu/concat_and_split.h"
namespace phi {
C
chentianyu03 已提交
24 25 26 27 28 29 30 31

template <typename T, typename Context>
void SplitKernel(const Context& dev_ctx,
                 const DenseTensor& x,
                 const ScalarArray& num_or_sections,
                 const Scalar& axis_scalar,
                 std::vector<DenseTensor*> outs) {
  // need to infershape output
32
  if (num_or_sections.FromTensor() || axis_scalar.FromTensor()) {
C
chentianyu03 已提交
33 34 35 36 37
    std::vector<MetaTensor> out_metas;
    for (size_t i = 0; i < outs.size(); ++i) {
      out_metas.push_back(outs[i]);
    }

38
    phi::SplitInferMeta(x, num_or_sections, axis_scalar, &out_metas, true);
C
chentianyu03 已提交
39 40 41 42 43 44 45 46

    for (size_t i = 0; i < out_metas.size(); ++i) {
      outs[i]->Resize(out_metas[i].dims());
    }
  }

  std::vector<const DenseTensor*> shape_refer;
  for (size_t j = 0; j < outs.size(); ++j) {
47
    dev_ctx.template Alloc<T>(outs[j]);
C
chentianyu03 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60
    shape_refer.emplace_back(outs[j]);
  }

  int axis = axis_scalar.to<int>();
  // Sometimes direct copies will be faster, this maybe need deeply analysis.
  if (axis == 0 && outs.size() < 10) {
    paddle::operators::StridedMemcpyWithAxis0<T>(
        dev_ctx, x, shape_refer, &outs);
  } else {
    SplitImpl<T, Context>(dev_ctx, x, shape_refer, axis, &outs);
  }
}

61
}  // namespace phi
C
chentianyu03 已提交
62 63 64 65

PT_REGISTER_KERNEL(split,
                   CPU,
                   ALL_LAYOUT,
66
                   phi::SplitKernel,
C
chentianyu03 已提交
67 68 69 70 71
                   float,
                   double,
                   int64_t,
                   int,
                   bool,
72
                   phi::dtype::float16) {}