// // TRTPooling.hpp // MNN // // Created by MNN on 2019/09/11. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef MNN_TRTPooling_HPP #define MNN_TRTPooling_HPP #include "TRTBackend.hpp" #include "TRTCommonExecution.hpp" namespace MNN { class TRTPooling : public TRTCommonExecution { public: TRTPooling(Backend *b, const Op *op, const std::vector &inputs, const std::vector &outputs); virtual ~TRTPooling() = default; virtual std::vector onEncode(const std::vector &inputs) override; }; } // namespace MNN #endif // MNN_TRTPooling_HPP