split_op.h 2.5 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
Yancey1989 已提交
19
#include "paddle/framework/ddim.h"
Y
Yancey 已提交
20 21 22 23 24
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace operators {

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

    // numel before the specified axis
    int64_t before = in_stride[0] / in_stride[axis];
    int64_t in_after = in_stride[axis];
Y
Yancey 已提交
39
    size_t input_offset = 0;
Y
Yancey1989 已提交
40
    for (auto& out : outs) {
41
      out->mutable_data<T>(ctx.GetPlace());
Y
Yancey1989 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
      auto out_stride = framework::stride_numel(out->dims());
      int64_t out_after = out_stride[axis];
      for (int64_t i = 0; i < before; ++i) {
        if (platform::is_cpu_place(place)) {
          auto& cpu_place = boost::get<platform::CPUPlace>(place);
          memory::Copy(cpu_place, out->data<T>() + i * out_after, cpu_place,
                       in->data<T>() + input_offset + i * in_after,
                       sizeof(T) * out_after);
        } else {
#ifdef PADDLE_WITH_CUDA
          auto& gpu_place = boost::get<platform::CUDAPlace>(place);
          auto& cuda_ctx =
              reinterpret_cast<const platform::CUDADeviceContext&>(dev_ctx);
          memory::Copy(gpu_place, out->data<T>() + i * out_after, gpu_place,
                       in->data<T>() + input_offset + i * in_after,
                       sizeof(T) * out_after, cuda_ctx.stream());
#else
          PADDLE_THROW("Paddle is not compiled with GPU");
#endif
        }
      }
      input_offset += out_after;
Y
Yancey 已提交
64 65 66 67 68 69
    }
  }
};

}  // namespace operators
}  // namespace paddle