poolingLayerRT.h 1.18 KB
Newer Older
dengjb's avatar
update  
dengjb committed
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
#include "NvInfer.h"
#include "fastrt/IPoolingLayerRT.h"
using namespace nvinfer1;

namespace fastrt {

    class MaxPool : public IPoolingLayerRT {
    public:
        MaxPool() = default;
        ~MaxPool() = default;

        ILayer* addPooling(INetworkDefinition *network, 
            std::map<std::string, Weights>& weightMap,
            ITensor& input) override;
    };

    class AvgPool : public IPoolingLayerRT {
    public:
        AvgPool() = default;
        ~AvgPool() = default;

        ILayer* addPooling(INetworkDefinition *network, 
            std::map<std::string, Weights>& weightMap,
            ITensor& input) override;
    };

    class GemPool : public IPoolingLayerRT {
    public:
        GemPool() = default;
        ~GemPool() = default;

        ILayer* addPooling(INetworkDefinition *network, 
            std::map<std::string, Weights>& weightMap,
            ITensor& input) override;
    };

    class GemPoolP : public IPoolingLayerRT {
    public:
        GemPoolP() = default;
        ~GemPoolP() = default;

        ILayer* addPooling(INetworkDefinition *network, 
            std::map<std::string, Weights>& weightMap,
            ITensor& input) override;
    };
}