1 // 2 // CPULinSpace.hpp 3 // MNN 4 // 5 // Created by MNN on 2019/12/11. 6 // Copyright © 2018, Alibaba Group Holding Limited 7 // 8 9 #ifndef CPULinSpace_hpp 10 #define CPULinSpace_hpp 11 12 #include "core/Execution.hpp" 13 14 namespace MNN { 15 class CPULinSpace : public Execution { 16 public: CPULinSpace(Backend * b)17 CPULinSpace(Backend *b) : Execution(b) { 18 // nothing to do 19 } 20 virtual ~CPULinSpace() = default; 21 virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override; 22 }; 23 24 } // namespace MNN 25 26 #endif /* CPULinSpace_hpp */ 27