// // UnaryExecution.hpp // MNN // // Created by MNN on 2019/01/31. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef UnaryExecution_hpp #define UnaryExecution_hpp #include "core/Execution.hpp" #include #include "backend/cuda/core/CUDABackend.hpp" namespace MNN { namespace CUDA { class UnaryExecution : public Execution { public: UnaryExecution(UnaryOpOperation opType, Backend *backend); virtual ~UnaryExecution() = default; virtual ErrorCode onResize(const std::vector &inputs, const std::vector &outputs) override; virtual ErrorCode onExecute(const std::vector &inputs, const std::vector &outputs) override; private: CUDARuntime *mRuntime; UnaryOpOperation mOpType; int mCount; }; } // namespace CUDA } // namespace MNN #endif /* UnaryExecution_hpp */