forked from alibaba/MNN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVulkanRelu.hpp
More file actions
61 lines (49 loc) · 1.72 KB
/
Copy pathVulkanRelu.hpp
File metadata and controls
61 lines (49 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//
// VulkanRelu.hpp
// MNN
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef VulkanRelu_hpp
#define VulkanRelu_hpp
#include <stdio.h>
#include "VulkanBasicExecution.hpp"
namespace MNN {
class VulkanRelu : public VulkanBasicExecution {
public:
VulkanRelu(Backend* bn, float slope);
virtual ~VulkanRelu();
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
const VulkanCommandPool::Buffer* cmdBuffer) override;
private:
float mSlope;
std::shared_ptr<VulkanBuffer> mGpuReluParam;
const VulkanPipeline* mReluPipeline;
std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
};
class VulkanRelu6 : public VulkanBasicExecution {
public:
VulkanRelu6(Backend* bn);
virtual ~VulkanRelu6();
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
const VulkanCommandPool::Buffer* cmdBuffer) override;
private:
std::shared_ptr<VulkanBuffer> mGpuRelu6Param;
const VulkanPipeline* mRelu6Pipeline;
std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
};
class VulkanPrelu : public VulkanBasicExecution {
public:
VulkanPrelu(Backend* bn, const Op* op);
virtual ~VulkanPrelu();
ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
const VulkanCommandPool::Buffer* cmdBuffer) override;
private:
std::shared_ptr<VulkanBuffer> mGpuPreluParam;
std::shared_ptr<VulkanImage> mSlope;
const VulkanPipeline* mPreluPipeline;
std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
};
} // namespace MNN
#endif /* VulkanRelu_hpp */