mirror of https://github.com/alibaba/MNN.git
27 lines
632 B
C++
27 lines
632 B
C++
|
//
|
||
|
// TRTActivation.hpp
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2019/09/11.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef MNN_TRTActivation_HPP
|
||
|
#define MNN_TRTActivation_HPP
|
||
|
|
||
|
#include "TRTBackend.hpp"
|
||
|
#include "TRTCommonExecution.hpp"
|
||
|
|
||
|
namespace MNN {
|
||
|
|
||
|
class TRTActivation : public TRTCommonExecution {
|
||
|
public:
|
||
|
TRTActivation(Backend *b, const Op *op, const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs);
|
||
|
virtual ~TRTActivation() = default;
|
||
|
virtual std::vector<ITensor *> onEncode(const std::vector<ITensor *> &inputs) override;
|
||
|
};
|
||
|
|
||
|
} // namespace MNN
|
||
|
|
||
|
#endif // MNN_TRTActivation_HPP
|