17 #include "NvInferPlugin.h" 18 #include "NvInferRuntimeCommon.h" 19 #include "fastdeploy/utils/utils.h" 29 class BasePlugin :
public nvinfer1::IPluginV2DynamicExt {
31 void setPluginNamespace(
const char* libNamespace) noexcept
override {
32 mNamespace = libNamespace;
35 const char* getPluginNamespace() const noexcept
override {
36 return mNamespace.c_str();
39 std::string mNamespace;
42 class BaseCreator :
public nvinfer1::IPluginCreator {
44 void setPluginNamespace(
const char* libNamespace) noexcept
override {
45 mNamespace = libNamespace;
48 const char* getPluginNamespace() const noexcept
override {
49 return mNamespace.c_str();
53 std::string mNamespace;
60 STATUS_NOT_SUPPORTED = 3,
61 STATUS_NOT_INITIALIZED = 4
65 template <
typename T>
void write(
char*& buffer,
const T& val) {
66 std::memcpy(buffer, &val,
sizeof(T));
71 template <
typename T> T read(
const char*& buffer) {
73 std::memcpy(&val, buffer,
sizeof(T));
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16