mirror of https://github.com/alibaba/MNN.git
36 lines
881 B
C++
36 lines
881 B
C++
|
//
|
||
|
// ReluBufExecution.hpp
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2019/01/31.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef MNN_OPENCL_BUFFER_CLOSED
|
||
|
|
||
|
#ifndef ReluBufExecution_hpp
|
||
|
#define ReluBufExecution_hpp
|
||
|
|
||
|
#include "backend/opencl/execution/image/CommonExecution.hpp"
|
||
|
namespace MNN {
|
||
|
namespace OpenCL {
|
||
|
|
||
|
class ReluBufExecution : public CommonExecution {
|
||
|
public:
|
||
|
ReluBufExecution(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend);
|
||
|
virtual ~ReluBufExecution();
|
||
|
|
||
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
||
|
|
||
|
private:
|
||
|
std::shared_ptr<Tensor> mPreluParam;
|
||
|
cl::Kernel mKernel;
|
||
|
uint32_t mMaxWorkGroupSize;
|
||
|
OpenCLBackend *mOpenCLBackend;
|
||
|
};
|
||
|
|
||
|
} // namespace OpenCL
|
||
|
} // namespace MNN
|
||
|
#endif /* ReluExecution_hpp */
|
||
|
#endif /* MNN_OPENCL_BUFFER_CLOSED */
|