2023-09-04 10:42:11 +08:00
|
|
|
//
|
|
|
|
// SelectBufExecution.hpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2023/08/11.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef MNN_OPENCL_BUFFER_CLOSED
|
|
|
|
#ifndef SelectBufExecution_hpp
|
|
|
|
#define SelectBufExecution_hpp
|
|
|
|
|
2024-04-19 11:58:21 +08:00
|
|
|
#include "backend/opencl/execution/image/CommonExecution.hpp"
|
2023-09-04 10:42:11 +08:00
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
namespace OpenCL {
|
|
|
|
|
2024-04-19 11:58:21 +08:00
|
|
|
class SelectBufExecution : public CommonExecution {
|
2023-09-04 10:42:11 +08:00
|
|
|
public:
|
2024-04-19 11:58:21 +08:00
|
|
|
SelectBufExecution(Backend *backend, const MNN::Op* Op);
|
2023-09-04 10:42:11 +08:00
|
|
|
virtual ~SelectBufExecution() = default;
|
|
|
|
|
2024-04-19 11:58:21 +08:00
|
|
|
virtual ErrorCode onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
2023-09-04 10:42:11 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint32_t mMaxWorkGroupSize;
|
|
|
|
std::vector<uint32_t> mGlobalWorkSize = {1, 1, 1};
|
|
|
|
std::vector<uint32_t> mLocalSize = {1, 1, 1};
|
|
|
|
std::set<std::string> mBuildOptions;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace OpenCL
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* SelectBufExecution_hpp */
|
|
|
|
#endif/* MNN_OPENCL_BUFFER_CLOSED */
|