quantize_mkldnn_op.cc 3.8 KB
Newer Older
X
xiaoli.liu@intel.com 已提交
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 16
#include "paddle/fluid/operators/quantize_op.h"

17
#include "paddle/fluid/framework/data_layout_transform.h"
X
xiaoli.liu@intel.com 已提交
18 19
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/platform/mkldnn_helper.h"
X
xiaoli.liu@intel.com 已提交
20
#include "paddle/fluid/platform/mkldnn_reuse.h"
X
xiaoli.liu@intel.com 已提交
21 22 23 24

namespace paddle {
namespace operators {

25 26 27
using dnnl::memory;
using dnnl::primitive;
using dnnl::reorder;
28
using Tensor = phi::DenseTensor;
29
using dnnl::stream;
30
using phi::DataLayout;
X
xiaoli.liu@intel.com 已提交
31 32 33 34 35

template <typename T>
class QuantOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
36 37
    auto* x = ctx.Input<phi::DenseTensor>("Input");
    auto* out = ctx.Output<phi::DenseTensor>("Output");
38 39 40 41 42 43

    const auto quantization_scale = ctx.Attr<float>("Scale");
    const auto quantization_shift = ctx.Attr<float>("Shift");
    const bool with_scale = quantization_scale != 1.0f;
    const bool with_shift = quantization_shift != 0.0f;

44 45
    PADDLE_ENFORCE_NE(quantization_scale,
                      0.0f,
46 47
                      platform::errors::InvalidArgument(
                          "Quantization scale must be different than 0.0f"));
48 49 50 51 52
    PADDLE_ENFORCE(quantization_shift <= 255 && quantization_shift >= 0,
                   platform::errors::InvalidArgument(
                       "Quantization shift must be lower or equal to ",
                       "255 and greater or equal to 0, but got %f",
                       quantization_shift));
53

X
xiaoli.liu@intel.com 已提交
54 55 56
    auto& dev_ctx =
        ctx.template device_context<platform::MKLDNNDeviceContext>();

57
    auto x_tz = phi::vectorize<int64_t>(x->dims());
X
xiaoli.liu@intel.com 已提交
58

59 60
    const bool is_negative_input = ctx.Attr<bool>("is_negative_input");
    const bool bfloat16 = ctx.Attr<bool>("bfloat16");
X
xiaoli.liu@intel.com 已提交
61

62 63
    dnnl::primitive_attr attrs;
    static constexpr int32_t mask = 0;
64

65 66 67
    if (with_scale) {
      attrs.set_output_scales(mask, {quantization_scale});
    }
68 69

    if (with_shift) {
70 71
      attrs.set_zero_points(
          DNNL_ARG_DST, mask, {static_cast<int32_t>(quantization_shift)});
72 73
    }

74 75
    auto x_type = phi::funcs::ToOneDNNDataType(x->dtype());
    DataType out_dtype;
76 77

    if (bfloat16) {
78
      out_dtype = DataType::BFLOAT16;
79
    } else if (is_negative_input && !with_shift) {
80
      out_dtype = DataType::INT8;
X
xiaoli.liu@intel.com 已提交
81
    } else {
82
      out_dtype = DataType::UINT8;
X
xiaoli.liu@intel.com 已提交
83
    }
84

85 86 87 88
    auto out_type = phi::funcs::ToOneDNNDataType(out_dtype);

    phi::funcs::ReorderOneDNNHandler reorder_handler(
        x_tz, x->dtype(), x_type, out_dtype, out_type, dev_ctx.GetEngine());
89 90

    auto reorder_src_memory_p = reorder_handler.AcquireSrcMemory(
91
        x->mem_desc(), phi::funcs::to_void_cast(x->data<T>()));
92 93 94 95 96
    auto reorder_dst_memory_p = reorder_handler.AcquireDstMemory(
        out, x->mem_desc(), dev_ctx.GetPlace());

    auto reorder_p = reorder_handler.AcquireReorder(
        reorder_dst_memory_p, reorder_src_memory_p, attrs);
97

98
    auto& astream = platform::MKLDNNDeviceContext::tls().get_stream();
99
    reorder_p->execute(astream, *reorder_src_memory_p, *reorder_dst_memory_p);
100
    astream.wait();
A
Adam 已提交
101

102
    out->set_mem_desc(reorder_dst_memory_p->get_desc());
X
xiaoli.liu@intel.com 已提交
103 104 105 106 107 108
  }
};
}  // namespace operators
}  // namespace paddle
namespace ops = paddle::operators;

109 110 111
REGISTER_OP_KERNEL(quantize,
                   MKLDNN,
                   ::paddle::platform::CPUPlace,
X
xiaoli.liu@intel.com 已提交
112
                   ops::QuantOpKernel<float>);