MNN/source/backend/cpu/CPULinSpace.hpp

27 lines
552 B
C++
Raw Normal View History

2019-12-27 22:16:57 +08:00
//
// CPULinSpace.hpp
// MNN
//
// Created by MNN on 2019/12/11.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef CPULinSpace_hpp
#define CPULinSpace_hpp
#include "core/Execution.hpp"
namespace MNN {
class CPULinSpace : public Execution {
public:
CPULinSpace(Backend *b) : Execution(b) {
// nothing to do
}
virtual ~CPULinSpace() = default;
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
};
} // namespace MNN
#endif /* CPULinSpace_hpp */