pytorch/caffe2/operators/quantized/int8_dequantize_op.h
Jerry Zhang 994f72ee3e Tensor construction codemod(ResizeLike) - 6/7 (#15137)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/15137

Codemod generated with clangr shard mode, 25 files per diff,
motivation: https://github.com/pytorch/pytorch/pull/12407

Reviewed By: ezyang

Differential Revision: D13419736

fbshipit-source-id: f4ad7b9582c2f809258169b7fef9adbca7063d99
2018-12-13 12:47:33 -08:00

52 lines
1.1 KiB
C++

#ifndef CAFFE2_OPERATORS_INT8_DEQUANTIZE_OP_H_
#define CAFFE2_OPERATORS_INT8_DEQUANTIZE_OP_H_
#include "caffe2/core/context.h"
#include "caffe2/core/operator.h"
#include "caffe2/core/tensor_int8.h"
#include "caffe2/operators/quantized/int8_utils.h"
namespace caffe2 {
namespace int8 {
namespace {
void Int8Dequantize(
const uint8_t* in,
float* out,
const int64_t N,
const float X_scale,
const int32_t X_offset) {
for (auto i = 0; i < N; ++i) {
out[i] = (static_cast<int32_t>(in[i]) - X_offset) * X_scale;
}
}
} // namespace
class Int8DequantizeOp final : public Operator<CPUContext> {
public:
using Operator<CPUContext>::Operator;
bool RunOnDevice() override {
const auto& X = Inputs()[0]->template Get<Int8TensorCPU>();
auto* Y = Output(0, X.t.sizes(), at::dtype<float>());
int32_t X_offset = X.zero_point;
auto X_scale = X.scale;
Int8Dequantize(
X.t.data<uint8_t>(),
Y->mutable_data<float>(),
X.t.numel(),
X_scale,
X_offset);
return true;
}
};
} // namespace int8
} // namespace caffe2
#endif // CAFFE2_OPERATORS_INT8_DEQUANTIZE_OP_H_