/* 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. */ #include "paddle/fluid/operators/fake_dequantize_op.h" #include #include namespace paddle { namespace operators { template struct DequantizeFunctor { void operator()(const platform::CPUDeviceContext& dev_ctx, const framework::Tensor* in, const framework::Tensor* scale, T max_range, framework::Tensor* out) { auto in_e = framework::EigenVector::Flatten(*in); const T* scale_factor = scale->data(); auto out_e = framework::EigenVector::Flatten(*out); auto& dev = *dev_ctx.eigen_device(); out_e.device(dev) = scale_factor[0] * in_e / max_range; } }; template struct ChannelDequantizeFunctor { void operator()(const platform::CPUDeviceContext& dev_ctx, const framework::Tensor* in, const framework::Tensor** scales, const int scale_num, T max_range, framework::Tensor* out) { if (scale_num == 1) { const int channel = in->dims()[0]; const T* scale_factor = scales[0]->data(); for (int i = 0; i < channel; i++) { T s = scale_factor[i]; framework::Tensor one_channel_in = in->Slice(i, i + 1); framework::Tensor one_channel_out = out->Slice(i, i + 1); auto in_e = framework::EigenVector::Flatten(one_channel_in); auto out_e = framework::EigenVector::Flatten(one_channel_out); auto& dev = *dev_ctx.eigen_device(); out_e.device(dev) = s * in_e / max_range; } } else if (scale_num == 2) { int batch_size = in->dims()[0]; int channel = in->dims()[1]; const T* scale_one = scales[0]->data(); const T* scale_two = scales[1]->data(); for (int i = 0; i < batch_size; i++) { framework::Tensor one_batch_in = in->Slice(i, i + 1).Resize( framework::slice_ddim(in->dims(), 1, in->dims().size())); framework::Tensor one_batch_out = out->Slice(i, i + 1).Resize( framework::slice_ddim(out->dims(), 1, out->dims().size())); for (int j = 0; j < channel; j++) { T s = scale_one[j]; framework::Tensor one_channel_in = one_batch_in.Slice(j, j + 1); framework::Tensor one_channel_out = one_batch_out.Slice(j, j + 1); auto in_e = framework::EigenVector::Flatten(one_channel_in); auto out_e = framework::EigenVector::Flatten(one_channel_out); auto& dev = *dev_ctx.eigen_device(); out_e.device(dev) = (s * scale_two[0]) * in_e / max_range; } } } } }; template struct DequantizeFunctor; template struct DequantizeFunctor; template struct ChannelDequantizeFunctor; template struct ChannelDequantizeFunctor; class FakeDequantizeMaxAbsOp : public framework::OperatorWithKernel { public: FakeDequantizeMaxAbsOp(const std::string& type, const framework::VariableNameMap& inputs, const framework::VariableNameMap& outputs, const framework::AttributeMap& attrs) : OperatorWithKernel(type, inputs, outputs, attrs) {} void InferShape(framework::InferShapeContext* ctx) const override { OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "FakeDequantizeMaxAbs"); OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "FakeDequantizeMaxAbs"); ctx->ShareDim("X", /*->*/ "Out"); ctx->ShareLoD("X", /*->*/ "Out"); } }; class FakeDequantizeMaxAbsOpMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("X", "(Tensor) The input with float-32/64 type is the " "low precision tensor."); AddInput("Scale", "(float) The scale in quantization stage."); AddOutput("Out", "(Tensor) The output is the dequantized high " "precision tensor."); AddAttr("max_range", "(float) The max range in quantization stage."); AddComment(R"DOC( FakeDequantizeMaxAbsOp operator. This calculation is an opposite operation of FakeQuantizeMaxAbsOp: $$Out = \frac{scale*X}{ max_range }$$ )DOC"); } }; class FakeChannelWiseDequantizeMaxAbsOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext* ctx) const override { OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "FakeChannelWiseDequantizeMaxAbs"); OP_INOUT_CHECK(ctx->HasInputs("Scales"), "Input", "Scales", "FakeChannelWiseDequantizeMaxAbs"); OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "FakeChannelWiseDequantizeMaxAbs"); ctx->ShareDim("X", /*->*/ "Out"); ctx->ShareLoD("X", /*->*/ "Out"); } }; class FakeChannelWiseDequantizeMaxAbsOpMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("X", "(Tensor) The input with float-32/64 type is the " "low precision tensor."); AddInput("Scales", "(Tensors) The scales in quantization stage. " "Now, `Scales` is a vector with at most two tensors. " "If Scales has two elements, the second tensor should only have " "one value.") .AsDuplicable(); AddOutput("Out", "(Tensor) The output is the dequantized high " "precision tensor."); AddAttr>( "quant_bits", "Quantization bit numbers in quantization stage. " "The size of `quant_bits` should be equal to the size of `Scales`.") .SetDefault({8}); AddComment(R"DOC( FakeChannelWiseDequantizeMaxAbsOp operator. This calculation is an opposite operation of FakeChannelWiseQuantizeMaxAbsOp: $$Out_c = \frac{X_c\prod_{i=1}^{n}Scales_{ic}}{\prod_{i=1}^{n}(2^{quant\_bits_i-1}-1)}$$ In the above formula, the range value of $c$ can be represented as $0 \leq c \lt \ the\ channel\ number\ of\ X$. Besides, the size of $quant\_bits$ should be equal to the size of $Scales$, and it is called $n$ in the formula. Notes: In general, the per-channel quantization is only applied to weights and the activations use per-layer quantization. )DOC"); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; using CPU = paddle::platform::CPUDeviceContext; REGISTER_OPERATOR( fake_dequantize_max_abs, ops::FakeDequantizeMaxAbsOp, ops::FakeDequantizeMaxAbsOpMaker, paddle::framework::EmptyGradOpMaker, paddle::framework::EmptyGradOpMaker); REGISTER_OP_CPU_KERNEL(fake_dequantize_max_abs, ops::FakeDequantizeMaxAbsKernel, ops::FakeDequantizeMaxAbsKernel); REGISTER_OPERATOR( fake_channel_wise_dequantize_max_abs, ops::FakeChannelWiseDequantizeMaxAbsOp, ops::FakeChannelWiseDequantizeMaxAbsOpMaker, paddle::framework::EmptyGradOpMaker, paddle::framework::EmptyGradOpMaker); REGISTER_OP_CPU_KERNEL(fake_channel_wise_dequantize_max_abs, ops::FakeChannelWiseDequantizeMaxAbsKernel, ops::FakeChannelWiseDequantizeMaxAbsKernel);