slice_op_xpu.cc 7.2 KB
Newer Older
T
Thunderbrook 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2018 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_XPU
16
#include "paddle/fluid/operators/slice_op.h"
T
Thunderbrook 已提交
17 18 19 20
#include <algorithm>
#include <memory>
#include <string>
#include <vector>
21
#include "xpu/refactor/math.h"
T
Thunderbrook 已提交
22 23 24 25 26 27 28 29

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;

template <typename DeviceContext, typename T>
class SliceXPUKernel : public framework::OpKernel<T> {
30 31
  using XPUType = typename XPUTypeTrait<T>::Type;

T
Thunderbrook 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 84 85 86 87
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto in = ctx.Input<framework::Tensor>("Input");
    auto out = ctx.Output<framework::Tensor>("Out");
    auto axes = ctx.Attr<std::vector<int>>("axes");
    auto starts = ctx.Attr<std::vector<int>>("starts");
    auto ends = ctx.Attr<std::vector<int>>("ends");
    auto in_dims = in->dims();

    // prepare starts, ends on XPU
    int dim_value = 0, start = 0, end = 0;
    // If a negative value is passed for any of the start or end indices,
    // it represents number of elements before the end of that dimension.
    // If the value passed to start or end is larger than the n
    // (the number of elements in this dimension), it represents n.
    for (size_t i = 0; i < axes.size(); ++i) {
      dim_value = in_dims[axes[i]];
      start = starts[i];
      end = ends[i];
      start = start < 0 ? (start + dim_value) : start;
      end = end < 0 ? (end + dim_value) : end;
      start = std::max(start, 0);
      end = std::max(end, 0);
      end = std::min(end, dim_value);
      PADDLE_ENFORCE_GT(end, start, platform::errors::InvalidArgument(
                                        "end should greater than start"));
      starts[i] = start;
      ends[i] = end;
    }
    size_t shape_size = in_dims.size();
    // the slice XPU kernel require that the length of `start`, `end` must be
    // equal
    // to the dims size of input tensor, therefore, if shape_size > axes.size(),
    // the `starts_extension` and `ends_extension` is necessary.
    std::vector<int> starts_extension(shape_size, 0);
    std::vector<int> ends_extension(shape_size, 0);
    if (shape_size > axes.size()) {
      for (size_t i = 0; i < shape_size; ++i) {
        ends_extension[i] = in_dims[i];
      }
      for (size_t i = 0; i < axes.size(); ++i) {
        starts_extension[axes[i]] = starts[i];
        ends_extension[axes[i]] = ends[i];
      }
    } else {
      starts_extension = std::move(starts);
      ends_extension = std::move(ends);
    }

    // prepare shape on XPU
    std::vector<int> shape(shape_size, 0);
    for (size_t i = 0; i < shape_size; ++i) {
      shape[i] = in_dims[i];
    }

    auto& dev_ctx = ctx.template device_context<DeviceContext>();
88 89 90 91 92 93 94 95 96
    const XPUType* in_data = reinterpret_cast<const XPUType*>(in->data<T>());
    XPUType* out_data =
        reinterpret_cast<XPUType*>(out->mutable_data<T>(ctx.GetPlace()));
    int r = xpu::slice<XPUType>(dev_ctx.x_context(), in_data, out_data, shape,
                                starts_extension, ends_extension);
    PADDLE_ENFORCE_EQ(
        r, XPU_SUCCESS,
        platform::errors::External("XPU slice kernel return wrong value[%d %s]",
                                   r, XPUAPIErrorMsg[r]));
T
Thunderbrook 已提交
97 98 99 100 101
  }
};

template <typename DeviceContext, typename T>
class SliceGradXPUKernel : public framework::OpKernel<T> {
102 103
  using XPUType = typename XPUTypeTrait<T>::Type;

T
Thunderbrook 已提交
104 105
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    auto* input = ctx.Input<Tensor>("Input");
    auto* dout = ctx.Input<Tensor>(framework::GradVarName("Out"));
    auto* dinput = ctx.Output<Tensor>(framework::GradVarName("Input"));

    auto axes_int = ctx.Attr<std::vector<int>>("axes");
    auto starts_int = ctx.Attr<std::vector<int>>("starts");
    auto ends_int = ctx.Attr<std::vector<int>>("ends");
    std::vector<int> axes(axes_int.begin(), axes_int.end());
    std::vector<int> starts(starts_int.begin(), starts_int.end());
    std::vector<int> ends(ends_int.begin(), ends_int.end());

    // Get the accurate attribute value of starts and ends
    auto starts_tensor_list = ctx.MultiInput<Tensor>("StartsTensorList");
    if (ctx.HasInput("StartsTensor")) {
      starts = GetDataFromTensor<int>(ctx.Input<Tensor>("StartsTensor"));
    } else if (starts_tensor_list.size() > 0) {
      starts = GetDataFromTensorList<int>(starts_tensor_list);
    }
T
Thunderbrook 已提交
124

125 126 127 128 129
    auto ends_tensor_list = ctx.MultiInput<Tensor>("EndsTensorList");
    if (ctx.HasInput("EndsTensor")) {
      ends = GetDataFromTensor<int>(ctx.Input<Tensor>("EndsTensor"));
    } else if (ends_tensor_list.size() > 0) {
      ends = GetDataFromTensorList<int>(ends_tensor_list);
T
Thunderbrook 已提交
130
    }
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

    const auto& in_dims = input->dims();
    int rank = in_dims.size();

    std::vector<int> pad_left(rank);
    std::vector<int> out_dims(rank);
    std::vector<int> pad_right(rank);
    int cnt = 0;
    for (int i = 0; i < in_dims.size(); ++i) {
      int start = 0;
      int end = in_dims[i];
      int axis = cnt < static_cast<int>(axes.size()) ? axes[cnt] : -1;
      if (axis == i) {
        start = starts[cnt];
        if (start < 0) {
          start = (start + in_dims[i]);
        }
        start = std::max(start, static_cast<int>(0));
        end = ends[cnt];
        if (end < 0) {
          end = (end + in_dims[i]);
        }
        end = std::min(end, static_cast<int>(in_dims[i]));
        cnt++;
T
Thunderbrook 已提交
155 156
      }

157 158 159
      pad_left[i] = start;
      out_dims[i] = end - start;
      pad_right[i] = in_dims[i] - out_dims[i] - pad_left[i];
T
Thunderbrook 已提交
160 161 162
    }

    auto& dev_ctx = ctx.template device_context<DeviceContext>();
163 164 165 166 167 168 169 170 171 172
    const XPUType* dout_data =
        reinterpret_cast<const XPUType*>(dout->data<T>());
    XPUType* din_data =
        reinterpret_cast<XPUType*>(dinput->mutable_data<T>(ctx.GetPlace()));
    int r = xpu::pad<XPUType>(dev_ctx.x_context(), dout_data, din_data,
                              out_dims, pad_left, pad_right, XPUType(0));
    PADDLE_ENFORCE_EQ(
        r, XPU_SUCCESS,
        platform::errors::External("XPU pad kernel return wrong value[%d %s]",
                                   r, XPUAPIErrorMsg[r]));
T
Thunderbrook 已提交
173 174 175 176 177 178 179 180
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_XPU_KERNEL(
181
    slice, ops::SliceXPUKernel<paddle::platform::XPUDeviceContext, float>,
182 183 184
    ops::SliceXPUKernel<paddle::platform::XPUDeviceContext, int>,
    ops::SliceXPUKernel<paddle::platform::XPUDeviceContext,
                        paddle::platform::float16>);
T
Thunderbrook 已提交
185 186
REGISTER_OP_XPU_KERNEL(
    slice_grad,
187 188 189 190
    ops::SliceGradXPUKernel<paddle::platform::XPUDeviceContext, float>,
    ops::SliceGradXPUKernel<paddle::platform::XPUDeviceContext, int>,
    ops::SliceGradXPUKernel<paddle::platform::XPUDeviceContext,
                            paddle::platform::float16>);
T
Thunderbrook 已提交
191
#endif