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
+30
View File
@@ -0,0 +1,30 @@
//
// NMSModule.hpp
// MNN
//
// Created by MNN on 2020/09/10.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef NMSModule_hpp
#define NMSModule_hpp
#include <MNN/expr/Module.hpp>
#include "core/Schedule.hpp"
namespace MNN {
namespace Express {
class NMSModule : public Module {
public:
virtual ~ NMSModule() {
// Do nothing
}
virtual std::vector<Express::VARP> onForward(const std::vector<Express::VARP>& inputs) override;
static NMSModule* create(const Op* op);
private:
NMSModule(){}
Module* clone(CloneContext* ctx) const override;
};
}
}
#endif