range_op_npu.cc 3.0 KB
Newer Older
O
OleNet 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Copyright (c) 2021 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. */

#ifdef PADDLE_WITH_ASCEND_CL
#include <memory>
#include <string>

#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/program_desc.h"
22
#include "paddle/fluid/framework/tensor_util.h"
O
OleNet 已提交
23 24
#include "paddle/fluid/operators/dropout_op.h"
#include "paddle/fluid/operators/math/math_function.h"
25 26 27
#include "paddle/fluid/operators/npu_op_runner.h"
#include "paddle/fluid/operators/range_op.h"
#include "paddle/fluid/operators/utils.h"
O
OleNet 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class RangeNPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
    auto* start_t = context.Input<framework::Tensor>("Start");
    auto* end_t = context.Input<framework::Tensor>("End");
    auto* step_t = context.Input<framework::Tensor>("Step");
    auto* out = context.Output<framework::Tensor>("Out");

    framework::Tensor n;
42 43 44 45 46
    framework::TensorCopy(
        *start_t, platform::CPUPlace(),
        context.template device_context<platform::DeviceContext>(), &n);
    context.template device_context<paddle::platform::NPUDeviceContext>()
        .Wait();
O
OleNet 已提交
47
    T start = n.data<T>()[0];
48 49 50 51 52
    framework::TensorCopy(
        *end_t, platform::CPUPlace(),
        context.template device_context<platform::DeviceContext>(), &n);
    context.template device_context<paddle::platform::NPUDeviceContext>()
        .Wait();
O
OleNet 已提交
53
    T end = n.data<T>()[0];
54 55 56 57 58
    framework::TensorCopy(
        *step_t, platform::CPUPlace(),
        context.template device_context<platform::DeviceContext>(), &n);
    context.template device_context<paddle::platform::NPUDeviceContext>()
        .Wait();
O
OleNet 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    T step = n.data<T>()[0];

    int64_t size = 0;
    GetSize(start, end, step, &size);

    out->Resize(framework::make_ddim({size}));
    out->mutable_data<T>(context.GetPlace());

    std::vector<T> odata;
    T value = start;
    for (int64_t i = 0; i < size; ++i) {
      odata.push_back(value);
      value += step;
    }

    framework::TensorFromVector(odata, context.device_context(), out);
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_NPU_KERNEL(
84
    range, ops::RangeNPUKernel<paddle::platform::NPUDeviceContext, int>,
O
OleNet 已提交
85 86 87 88
    ops::RangeNPUKernel<paddle::platform::NPUDeviceContext, float>,
    ops::RangeNPUKernel<paddle::platform::NPUDeviceContext, double>)

#endif