MNN/source/backend/cpu/CPUQuantizedReshape.hpp

24 lines
683 B
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// CPUQuantizedReshape.hpp
// MNN
//
// Created by MNN on 2018/08/09.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef CPUQuantizedReshape_hpp
#define CPUQuantizedReshape_hpp
2019-12-27 22:16:57 +08:00
#include "backend/cpu/CPUBackend.hpp"
2019-04-17 10:49:11 +08:00
namespace MNN {
class CPUQuantizedReshape : public Execution {
public:
2020-02-26 09:57:17 +08:00
CPUQuantizedReshape(Backend *b);
2019-04-17 10:49:11 +08:00
virtual ~CPUQuantizedReshape() = default;
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
};
} // namespace MNN
#endif /* CPUQuantizedReshape_hpp */