MNN/source/backend/opencl/execution/buffer/ScaleBufExecution.hpp

41 lines
1.0 KiB
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// ScaleBufExecution.hpp
2019-04-17 10:49:11 +08:00
// MNN
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef MNN_OPENCL_BUFFER_CLOSED
#ifndef ScaleBufExecution_hpp
#define ScaleBufExecution_hpp
2019-04-17 10:49:11 +08:00
2024-04-19 11:58:21 +08:00
#include "backend/opencl/execution/image/CommonExecution.hpp"
2019-04-17 10:49:11 +08:00
namespace MNN {
namespace OpenCL {
2024-04-19 11:58:21 +08:00
class ScaleBufExecution : public CommonExecution {
2019-04-17 10:49:11 +08:00
public:
ScaleBufExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
virtual ~ScaleBufExecution();
2019-04-17 10:49:11 +08:00
2024-04-19 11:58:21 +08:00
virtual ErrorCode onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
2019-04-17 10:49:11 +08:00
private:
std::shared_ptr<Tensor> mScale;
std::shared_ptr<Tensor> mBias;
2019-04-17 10:49:11 +08:00
uint32_t mMaxWorkGroupSize;
std::vector<uint32_t> mGlobalWorkSize{1, 1, 1};
std::vector<uint32_t> mLocalWorkSize{1, 1, 1};
2019-04-17 10:49:11 +08:00
OpenCLBackend *mOpenCLBackend;
bool mHasBias = false;
2024-09-12 12:57:57 +08:00
std::set<std::string> mBuildOptions;
2019-04-17 10:49:11 +08:00
};
} // namespace OpenCL
} // namespace MNN
#endif /* ScaleBufExecution_hpp */
#endif /* MNN_OPENCL_BUFFER_CLOSED */