split_op.h 1.7 KB
Newer Older
Y
Yancey 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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. */

#pragma once

Y
Yancey1989 已提交
17
#include <chrono>
Y
Yancey 已提交
18
#include <vector>
Y
Yi Wang 已提交
19 20
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/strided_memcpy.h"
Y
Yancey 已提交
21 22 23 24

namespace paddle {
namespace operators {

Q
QI JUN 已提交
25
template <typename DeviceContext, typename T>
26
class SplitOpKernel : public framework::OpKernel<T> {
Y
Yancey 已提交
27 28 29 30
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* in = ctx.Input<framework::Tensor>("X");
    auto outs = ctx.MultiOutput<framework::Tensor>("Out");
Y
Yancey1989 已提交
31
    auto in_stride = framework::stride_numel(in->dims());
Y
Yancey 已提交
32
    int64_t axis = static_cast<int64_t>(ctx.Attr<int>("axis"));
Y
Yancey1989 已提交
33 34
    auto place = ctx.GetPlace();

Y
Yancey 已提交
35
    size_t input_offset = 0;
Y
Yancey1989 已提交
36
    for (auto& out : outs) {
37
      out->mutable_data<T>(ctx.GetPlace());
Y
Yancey1989 已提交
38
      auto out_stride = framework::stride_numel(out->dims());
Y
fix ci  
Yancey1989 已提交
39 40
      StridedNumelCopyWithAxis<T>(ctx.device_context(), axis, out->data<T>(),
                                  out_stride, in->data<T>() + input_offset,
T
typhoonzero 已提交
41
                                  in_stride, out_stride[axis]);
Y
Yancey1989 已提交
42
      input_offset += out_stride[axis];
Y
Yancey 已提交
43 44 45 46 47 48
    }
  }
};

}  // namespace operators
}  // namespace paddle