2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
// CPUDequantize.hpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2018/08/02.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CPUDequantize_hpp
|
|
|
|
#define CPUDequantize_hpp
|
|
|
|
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Execution.hpp"
|
2019-04-17 10:49:11 +08:00
|
|
|
#include "TFQuantizeOp_generated.h"
|
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class CPUDequantize : public Execution {
|
|
|
|
public:
|
|
|
|
CPUDequantize(Backend *backend, QuantizeMode mode, const Op *op);
|
|
|
|
virtual ~CPUDequantize() = default;
|
|
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
float mHalfRange;
|
|
|
|
QuantizeMode mMode;
|
2020-07-04 01:21:30 +08:00
|
|
|
bool mIsLiteDequantize;
|
|
|
|
int mZeroPoint;
|
|
|
|
float mScale;
|
2019-04-17 10:49:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace MNN
|
|
|
|
|
|
|
|
#endif /* CPUDequantize_hpp */
|