// // CastBufExecution.hpp // MNN // // Created by MNN on 2023/12/1. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef CastExecution_hpp #define CastExecution_hpp #include "CommonExecution.hpp" namespace MNN { namespace OpenCL { class CastExecution : public CommonExecution { public: CastExecution(const std::vector &inputs, const std::vector &outputs, const std::string &compute, const MNN::Op* op, Backend *backend); virtual ~CastExecution() = 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 /* CastExecution_hpp */