mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Summary: Quantizing a *gradient* is not applicable to complex ASR model. Gradient in INT8 f438266519 Gradient in FP32 f438109197 Clearly two WER shows the limitation with quantizing a gradient. As of now, we are okay with simply enabling quantized backpropagation but computing gradient in FP32. It already saves a memory due to model size. Test Plan: Signals Differential Revision: D45965552 Pull Request resolved: https://github.com/pytorch/pytorch/pull/101739 Approved by: https://github.com/izaitsevfb
112 lines
4.3 KiB
C++
112 lines
4.3 KiB
C++
#include <ATen/native/quantized/PackedParams.h>
|
|
#include <ATen/native/quantized/cpu/QuantUtils.h>
|
|
#include <torch/library.h>
|
|
#include <torch/torch.h>
|
|
|
|
namespace {
|
|
using namespace torch::autograd;
|
|
using namespace at;
|
|
// This class is a custom gradient function that enables quantized tensor to
|
|
// pass input gradient back to the previous layers This function can be used
|
|
// when the user is adapting mixed precision for traninig after quantization
|
|
// From torch layer, we have no access to linear_dynamic operator which needs to
|
|
// access via redispatching mechanism TO-DO : currently we are supporting per
|
|
// tensor quantization only, will expand to per channel later on
|
|
class PackedLinearWeightDynamicBackward
|
|
: public Function<PackedLinearWeightDynamicBackward> {
|
|
public:
|
|
static torch::Tensor forward(
|
|
AutogradContext* ctx,
|
|
at::Tensor input,
|
|
const c10::intrusive_ptr<LinearPackedParamsBase>& packed_weight,
|
|
bool reduce_range) {
|
|
static auto op =
|
|
at::Dispatcher::singleton()
|
|
.findSchemaOrThrow("quantized::linear_dynamic", "")
|
|
.typed<at::Tensor(
|
|
at::Tensor,
|
|
c10::intrusive_ptr<
|
|
LinearPackedParamsBase,
|
|
c10::detail::intrusive_target_default_null_type<
|
|
LinearPackedParamsBase>> const&,
|
|
bool)>();
|
|
auto output = op.redispatch(
|
|
DispatchKeySet({DispatchKey::CPU}), input, packed_weight, reduce_range);
|
|
auto input_contig = input.contiguous();
|
|
// Calculate statistics for quantization of input Tensor
|
|
float x_min = 0;
|
|
float x_max = 0;
|
|
if (input.numel() > 0) {
|
|
x_min = input_contig.min().item<float>();
|
|
x_max = input_contig.max().item<float>();
|
|
}
|
|
auto q_params = quant_utils::ChooseQuantizationParams(
|
|
/*min=*/x_min,
|
|
/*max=*/x_max,
|
|
/*qmin=*/0,
|
|
/*qmax=*/255);
|
|
ctx->saved_data["weight"] = packed_weight;
|
|
// q_params.scale : shape [1] (per-tensor)
|
|
ctx->saved_data["input_scale"] = q_params.scale;
|
|
return output;
|
|
}
|
|
|
|
static tensor_list backward(AutogradContext* ctx, tensor_list grad_outputs) {
|
|
if (grad_outputs.empty()) {
|
|
return {torch::Tensor(), torch::Tensor(), torch::Tensor()};
|
|
}
|
|
auto packed_weight =
|
|
ctx->saved_data["weight"].toCustomClass<LinearPackedParamsBase>();
|
|
auto unpacked_parameters = packed_weight->unpack();
|
|
auto original_weight = std::get<0>(unpacked_parameters);
|
|
auto input_scale = ctx->saved_data["input_scale"].toDouble();
|
|
|
|
// Gradient for post-scaling
|
|
// Let us rewrite this layer by separating the matmul from the output
|
|
// scaling: y = (x * s1) @ w * s2 + b So you now back-propagate through four
|
|
// operations: + b, * s2, @ W, and * s1. The steps are: start with the
|
|
// gradient from the top, aka the adjoint, which is grad_outputs[0].
|
|
// gradient for + b: this is a no-op.
|
|
// gradient for * s2: scale by s2. That's the affine/per-channel scale baked
|
|
// into W. gradient for @ W: matmul with W.t. gradient for * s1: scale by
|
|
// s1.
|
|
auto grad_output0 = grad_outputs[0];
|
|
const auto qtype = original_weight.qscheme();
|
|
if (qtype == at::kPerTensorAffine) {
|
|
grad_output0 *= original_weight.q_scale();
|
|
original_weight = at::permute(original_weight, {1, 0});
|
|
} else if (qtype == at::kPerChannelAffine) {
|
|
// Per Channel quantizer does not support transpose.
|
|
// Manual transpose is necessary
|
|
original_weight = original_weight.dequantize();
|
|
} else {
|
|
TORCH_INTERNAL_ASSERT(false, "Unsupported quantization scheme.");
|
|
}
|
|
// Compute gradient in FP32
|
|
auto dLdX1 = torch::matmul(grad_output0, original_weight);
|
|
auto input_grad0 = dLdX1 * input_scale;
|
|
return {input_grad0, torch::Tensor(), torch::Tensor()};
|
|
}
|
|
};
|
|
|
|
at::Tensor packed_linear_weight_grad(
|
|
c10::DispatchKeySet ks,
|
|
at::Tensor input,
|
|
const c10::intrusive_ptr<LinearPackedParamsBase>& packed_weight,
|
|
bool reduce_range) {
|
|
return PackedLinearWeightDynamicBackward::apply(
|
|
input, packed_weight, reduce_range);
|
|
}
|
|
} // namespace
|
|
|
|
namespace at {
|
|
namespace native {
|
|
namespace {
|
|
TORCH_LIBRARY_IMPL(quantized, Autograd, m) {
|
|
m.impl(
|
|
TORCH_SELECTIVE_NAME("quantized::linear_dynamic"),
|
|
TORCH_FN(packed_linear_weight_grad));
|
|
}
|
|
} // namespace
|
|
} // namespace native
|
|
} // namespace at
|