2019-04-17 10:49:11 +08:00
|
|
|
//
|
2021-03-12 18:41:50 +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
|
|
|
|
//
|
|
|
|
|
2021-03-12 18:41:50 +08:00
|
|
|
#ifndef MNN_OPENCL_BUFFER_CLOSED
|
|
|
|
|
|
|
|
#ifndef ScaleBufExecution_hpp
|
|
|
|
#define ScaleBufExecution_hpp
|
2019-04-17 10:49:11 +08:00
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Execution.hpp"
|
|
|
|
#include "backend/opencl/core/OpenCLBackend.hpp"
|
|
|
|
#include "backend/opencl/core/OpenCLRunningUtils.hpp"
|
2023-12-27 17:26:44 +08:00
|
|
|
#include "backend/opencl/execution/image/CommonExtension.hpp"
|
2021-03-12 18:41:50 +08:00
|
|
|
|
2019-04-17 10:49:11 +08:00
|
|
|
namespace MNN {
|
|
|
|
namespace OpenCL {
|
|
|
|
|
2023-12-27 17:26:44 +08:00
|
|
|
class ScaleBufExecution : public Execution, public CommonExtension {
|
2019-04-17 10:49:11 +08:00
|
|
|
public:
|
2021-03-12 18:41:50 +08:00
|
|
|
ScaleBufExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
|
|
|
|
virtual ~ScaleBufExecution();
|
2019-04-17 10:49:11 +08:00
|
|
|
|
|
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<Tensor> mScale;
|
2021-03-12 18:41:50 +08:00
|
|
|
std::shared_ptr<Tensor> mBias;
|
2019-04-17 10:49:11 +08:00
|
|
|
cl::Kernel mKernel;
|
|
|
|
uint32_t mMaxWorkGroupSize;
|
2021-03-12 18:41:50 +08:00
|
|
|
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;
|
2021-03-12 18:41:50 +08:00
|
|
|
bool mHasBias = false;
|
2019-04-17 10:49:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace OpenCL
|
|
|
|
} // namespace MNN
|
2021-03-12 18:41:50 +08:00
|
|
|
#endif /* ScaleBufExecution_hpp */
|
|
|
|
#endif /* MNN_OPENCL_BUFFER_CLOSED */
|