mirror of https://github.com/alibaba/MNN.git
30 lines
608 B
C++
30 lines
608 B
C++
|
//
|
||
|
// CPUInt8ToFloat.hpp
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2019/5/22.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef CPUInt8ToFloat_hpp
|
||
|
#define CPUInt8ToFloat_hpp
|
||
|
|
||
|
#include "Execution.hpp"
|
||
|
#include "Tensor.hpp"
|
||
|
|
||
|
namespace MNN {
|
||
|
|
||
|
class CPUInt8ToFloat : public Execution {
|
||
|
public:
|
||
|
CPUInt8ToFloat(Backend *backend, const MNN::Op *param);
|
||
|
virtual ~CPUInt8ToFloat();
|
||
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
||
|
|
||
|
private:
|
||
|
std::shared_ptr<Tensor> mScales;
|
||
|
};
|
||
|
|
||
|
} // namespace MNN
|
||
|
|
||
|
#endif /* CPUInt8ToFloat_hpp */
|