chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:33:03 +08:00
commit 5b57521aa1
8226 changed files with 3425766 additions and 0 deletions
@@ -0,0 +1,18 @@
//
// PluginFactory.hpp
// MNN
//
// Created by MNN on b'2020/08/12'.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef PluginFactory_hpp
#define PluginFactory_hpp
#include <MNN/MNNDefine.h>
#include <stdint.h>
extern "C" {
MNN_PUBLIC void* MNNTRTCreatePlugion(const void* opRaw, const void* extraInfo);
MNN_PUBLIC void* MNNTRTCreatePlugionSerial(const char* layerName, const void* serialData, size_t serialLength);
}
#endif