requantize_mkldnn_op.cc 4.0 KB
Newer Older
X
xiaolil1 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 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. */

15
#include <iterator>  // NOLINT
16
#include "dnnl.hpp"  // NOLINT
X
xiaolil1 已提交
17 18
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/operators/requantize_op.h"
19 20
#include "paddle/phi/backends/onednn/onednn_helper.h"
#include "paddle/phi/backends/onednn/onednn_reuse.h"
X
xiaolil1 已提交
21 22 23 24

namespace paddle {
namespace operators {

25 26
using dnnl::memory;
using dnnl::reorder;
X
xiaolil1 已提交
27

28 29 30 31 32 33 34 35
namespace {

inline uint8_t clip_to_uint8(float x) {
  return std::max(0L, std::min(255L, std::lround(x)));
}

}  // namespace

X
xiaolil1 已提交
36 37 38 39
template <typename T>
class ReQuantOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
40
    auto* input = ctx.Input<phi::DenseTensor>("Input");
X
xiaolil1 已提交
41
    auto scale_in = ctx.Attr<float>("Scale_in");
42
    auto shift_in = ctx.Attr<float>("Shift_in");
X
xiaolil1 已提交
43
    auto scale_out = ctx.Attr<float>("Scale_out");
44 45
    auto shift_out = ctx.Attr<float>("Shift_out");
    bool with_shift = shift_in != 0.0f || shift_out != 0.0f;
46
    auto* output = ctx.Output<phi::DenseTensor>("Output");
47

48
    PADDLE_ENFORCE_NE(
49 50
        scale_in,
        0.0f,
51 52
        platform::errors::InvalidArgument("Scale of input cannot be 0.0"));
    PADDLE_ENFORCE_NE(
53 54
        scale_out,
        0.0f,
55
        platform::errors::InvalidArgument("Scale of output cannot be 0.0"));
56 57
    if (shift_in != 0.0f) {
      PADDLE_ENFORCE_EQ(
58 59
          input->dtype(),
          DataType::UINT8,
60 61 62 63
          platform::errors::Unimplemented("Requantize does not support nonzero "
                                          "shift for signed input."));
    }

64
    auto& dev_ctx = ctx.template device_context<phi::OneDNNContext>();
X
xiaolil1 已提交
65

66
    auto src_tz = phi::vectorize(input->dims());
X
xiaolil1 已提交
67

68 69 70 71 72 73
    auto src_paddle_dt = input->dtype();
    auto dst_paddle_dt = with_shift ? DataType::UINT8 : src_paddle_dt;

    auto xstrides = input->mem_desc().data.format_desc.blocking.strides;
    std::vector<dnnl_dim_t> vstrides(xstrides,
                                     xstrides + input->mem_desc().data.ndims);
74

75 76 77 78 79 80 81 82 83
    dnnl::primitive_attr attrs;
    int mask = 0;
    float reorder_scale = scale_out / scale_in;
    attrs.set_output_scales(mask, {reorder_scale});
    if (with_shift) {
      uint8_t reorder_shift =
          clip_to_uint8(shift_out - reorder_scale * shift_in);
      attrs.set_zero_points(
          DNNL_ARG_DST, mask, {static_cast<int32_t>(reorder_shift)});
84 85
    }

86 87 88 89 90 91 92
    phi::funcs::ReorderOneDNNHandler reorder_handler(
        src_tz,
        src_paddle_dt,
        phi::funcs::ToOneDNNDataType(src_paddle_dt),
        dst_paddle_dt,
        phi::funcs::ToOneDNNDataType(dst_paddle_dt),
        dev_ctx.GetEngine());
93

94 95 96 97 98 99 100 101
    auto src_memory_p = reorder_handler.AcquireSrcMemory(
        input->mem_desc(), phi::funcs::to_void_cast(input->data<T>()));
    auto dst_memory_p = reorder_handler.AcquireDstMemory(
        output, src_tz, vstrides, dev_ctx.GetPlace());

    auto reorder_p =
        reorder_handler.AcquireReorder(dst_memory_p, src_memory_p, attrs);

102
    auto& astream = phi::OneDNNContext::tls().get_stream();
103
    reorder_p->execute(astream, *src_memory_p, *dst_memory_p);
104
    astream.wait();
X
xiaolil1 已提交
105

106
    output->set_mem_desc(dst_memory_p->get_desc());
X
xiaolil1 已提交
107 108 109 110 111 112 113 114
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

115 116
REGISTER_OP_KERNEL(requantize,
                   MKLDNN,
117
                   ::phi::CPUPlace,
118 119
                   ops::ReQuantOpKernel<int8_t>,
                   ops::ReQuantOpKernel<uint8_t>,
120
                   ops::ReQuantOpKernel<paddle::platform::bfloat16>);