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

47 lines
1.3 KiB
C++

//
// ScaleBufExecution.hpp
// 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
#include <array>
#include <memory>
#include <vector>
#include "core/Execution.hpp"
#include "backend/opencl/core/OpenCLBackend.hpp"
#include "backend/opencl/core/OpenCLRunningUtils.hpp"
namespace MNN {
namespace OpenCL {
class ScaleBufExecution : public Execution {
public:
ScaleBufExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
virtual ~ScaleBufExecution();
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;
std::shared_ptr<Tensor> mBias;
cl::Kernel mKernel;
uint32_t mMaxWorkGroupSize;
std::vector<uint32_t> mGlobalWorkSize{1, 1, 1};
std::vector<uint32_t> mLocalWorkSize{1, 1, 1};
OpenCLBackend *mOpenCLBackend;
bool mHasBias = false;
};
} // namespace OpenCL
} // namespace MNN
#endif /* ScaleBufExecution_hpp */
#endif /* MNN_OPENCL_BUFFER_CLOSED */