MNN/source/backend/cpu/CPUShape.hpp

26 lines
530 B
C++
Raw Normal View History

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