// // RangeBufExecution.hpp // MNN // // Created by MNN on 2023/08/11. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef MNN_OPENCL_BUFFER_CLOSED #ifndef RangeBufExecution_hpp #define RangeBufExecution_hpp #include "backend/opencl/execution/image/CommonExecution.hpp" namespace MNN { namespace OpenCL { class RangeBufExecution : public CommonExecution { public: RangeBufExecution(const std::string &compute, const MNN::Op *Op, Backend *backend); virtual ~RangeBufExecution() = default; virtual ErrorCode onEncode(const std::vector &inputs, const std::vector &outputs) override; private: uint32_t mMaxWorkGroupSize; std::vector mGlobalWorkSize = {1, 1, 1}; std::vector mLocalSize = {1, 1, 1}; std::set mBuildOptions; }; } // namespace OpenCL } // namespace MNN #endif /* RangeBufExecution_hpp */ #endif/* MNN_OPENCL_BUFFER_CLOSED */