split_kernel.cu 2.6 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 16
#include "paddle/phi/kernels/split_kernel.h"

C
chentianyu03 已提交
17
#include "paddle/fluid/operators/strided_memcpy.h"
18 19
#include "paddle/phi/common/float16.h"
#include "paddle/phi/core/kernel_registry.h"
L
Leo Chen 已提交
20
#include "paddle/phi/kernels/funcs/concat_and_split_functor.h"
21
namespace phi {
C
chentianyu03 已提交
22 23 24 25

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

F
From00 已提交
39
    phi::SplitInferMeta(x, num_or_sections, axis_scalar, out_metas_ptr);
40 41 42 43 44 45

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

C
chentianyu03 已提交
46 47
  std::vector<const DenseTensor*> shape_refer;
  for (size_t j = 0; j < outs.size(); ++j) {
48
    dev_ctx.template Alloc<T>(outs[j]);
C
chentianyu03 已提交
49 50 51 52 53 54 55 56 57
    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 {
L
Leo Chen 已提交
58 59
    phi::funcs::SplitFunctor<Context, T> functor;
    functor(dev_ctx, x, shape_refer, axis, &outs);
C
chentianyu03 已提交
60 61 62
  }
}

63
}  // namespace phi
C
chentianyu03 已提交
64

65
PD_REGISTER_KERNEL(split,
C
chentianyu03 已提交
66 67
                   GPU,
                   ALL_LAYOUT,
68
                   phi::SplitKernel,
C
chentianyu03 已提交
69 70 71 72 73
                   float,
                   double,
                   int64_t,
                   int,
                   bool,
74 75
                   uint8_t,
                   int8_t,
76 77
                   phi::dtype::float16,
                   phi::dtype::bfloat16) {}