2020-11-05 16:41:56 +08:00
|
|
|
//
|
|
|
|
// PReLUExecution.hpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2019/01/31.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef PReLUExecution_hpp
|
|
|
|
#define PReLUExecution_hpp
|
|
|
|
|
|
|
|
#include "core/Execution.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "backend/cuda/core/CUDABackend.hpp"
|
|
|
|
|
|
|
|
namespace MNN {
|
|
|
|
namespace CUDA {
|
|
|
|
|
|
|
|
class PReLUExecution : public Execution {
|
|
|
|
public:
|
|
|
|
PReLUExecution(const PRelu* prelu, Backend *backend);
|
|
|
|
virtual ~PReLUExecution();
|
|
|
|
|
|
|
|
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:
|
|
|
|
CUDARuntime *mRuntime;
|
|
|
|
void *mDeviceSlope = nullptr;
|
|
|
|
int mCount;
|
|
|
|
int mChannel;
|
|
|
|
int mArea;
|
2022-02-18 11:30:27 +08:00
|
|
|
std::pair<void*, int> mPreluStorage;
|
2020-11-05 16:41:56 +08:00
|
|
|
bool mIsChannelShared = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace CUDA
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* PReLUExecution_hpp */
|