mirror of https://github.com/alibaba/MNN.git
22 lines
522 B
C++
22 lines
522 B
C++
|
//
|
||
|
// CPUAsString.hpp
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2018/08/05.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef CPUAsString_hpp
|
||
|
#define CPUAsString_hpp
|
||
|
|
||
|
#include "CPUBackend.hpp"
|
||
|
|
||
|
namespace MNN {
|
||
|
class CPUAsStringCreator : public CPUBackend::Creator {
|
||
|
public:
|
||
|
virtual Execution* onCreate(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
|
||
|
const MNN::Op* op, Backend* backend) const override;
|
||
|
};
|
||
|
} // namespace MNN
|
||
|
#endif /* CPUAsString_hpp */
|