expand_as_v2_op_npu.cc 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* 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. */

#include "paddle/fluid/operators/expand_as_v2_op.h"

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class ExpandAsV2NPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
23
    auto rank = context.Input<phi::DenseTensor>("X")->dims().size();
24 25
    auto target_shape = context.Attr<std::vector<int>>("target_shape");
    auto target_rank = target_shape.size();
26 27
    PADDLE_ENFORCE_GE(target_rank,
                      rank,
28 29 30 31
                      platform::errors::InvalidArgument(
                          "The rank (%d) of the input 'target_tensor' for "
                          "expand_as_v2 op must be greater than or equal to "
                          "the rank (%d) of the input 'x'.",
32 33
                          target_rank,
                          rank));
34
    PADDLE_ENFORCE_GE(
35 36
        rank,
        1,
37 38 39
        platform::errors::InvalidArgument("The rank (%d) of the input 'x' for "
                                          "expand_as_v2 op must be positive.",
                                          rank));
40 41
    PADDLE_ENFORCE_LE(target_rank,
                      MAX_RANK_SUPPORTED,
42 43 44
                      platform::errors::InvalidArgument(
                          "The rank (%d) of the input 'target_tensor' for "
                          "expand_as_v2 op must be less than or equal to %d.",
45 46
                          target_rank,
                          MAX_RANK_SUPPORTED));
47 48 49 50 51
    ExpandAs(context);
  }

 protected:
  void ExpandAs(const framework::ExecutionContext& context) const {
52
    auto* in0 = context.Input<phi::DenseTensor>("X");
53 54
    auto in_dims = in0->dims();
    auto target_shape = context.Attr<std::vector<int>>("target_shape");
55
    auto vec_in_dims = phi::vectorize<int>(in_dims);
56 57 58 59
    auto diff = target_shape.size() - vec_in_dims.size();
    vec_in_dims.insert(vec_in_dims.begin(), diff, 1);

    for (size_t i = 0; i < vec_in_dims.size(); ++i) {
60 61
      PADDLE_ENFORCE_NE(target_shape[i],
                        0,
62 63 64 65
                        platform::errors::InvalidArgument(
                            "The value of target shape cannot be zero."));
      if (vec_in_dims[i] != 1) {
        PADDLE_ENFORCE_EQ(
66 67
            vec_in_dims[i],
            target_shape[i],
68 69 70 71
            platform::errors::InvalidArgument(
                "The value (%d) of the non-singleton dimension does not match"
                " the corresponding value (%d) in "
                "target tensor for expand_as_v2 op.",
72 73
                vec_in_dims[i],
                target_shape[i]));
74 75
      }
    }
76
    auto* out0 = context.Output<phi::DenseTensor>("Out");
77

78
    framework::DDim out_dims = phi::make_ddim(target_shape);
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

    out0->Resize(out_dims);
    out0->mutable_data<T>(context.GetPlace());

    const auto& runner =
        NpuOpRunner("ExpandD", {*in0}, {*out0}, {{"shape", target_shape}});

    auto stream =
        context.template device_context<paddle::platform::NPUDeviceContext>()
            .stream();

    runner.Run(stream);
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP_NPU_KERNEL(
    expand_as_v2,
    ops::ExpandAsV2NPUKernel<paddle::platform::NPUDeviceContext, float>,
    ops::ExpandAsV2NPUKernel<paddle::platform::NPUDeviceContext, int>,
    ops::ExpandAsV2NPUKernel<paddle::platform::NPUDeviceContext, int8_t>,
    ops::ExpandAsV2NPUKernel<paddle::platform::NPUDeviceContext, uint8_t>,
    ops::ExpandAsV2NPUKernel<paddle::platform::NPUDeviceContext,
                             paddle::platform::float16>);