alibaba--mnn
14 行
343 B
C++
14 行
343 B
C++
#ifndef SingleConvert_hpp
|
|
#define SingleConvert_hpp
|
|
#include "ConvertTflite.hpp"
|
|
namespace MNN {
|
|
class SingleConvert : public ConvertTflite::Convert {
|
|
public:
|
|
virtual ConvertTflite::CommandBuffer onExecute(const Op* op, const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs, ConvertTflite* root) override;
|
|
};
|
|
}
|
|
|
|
|
|
|
|
#endif
|