74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
//
|
|
// TorchExtraManager.cpp
|
|
// MNNConverter
|
|
//
|
|
// Created by MNN on 2021/05/11.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#include "TorchExtraManager.hpp"
|
|
#include "OpCount.hpp"
|
|
#include "MNN_generated.h"
|
|
namespace MNN {
|
|
namespace Express {
|
|
std::shared_ptr<TorchExtraManager> TorchExtraManager::gInstance;
|
|
std::shared_ptr<TorchExtraManager> TorchExtraManager::get() {
|
|
if (nullptr == gInstance) {
|
|
gInstance.reset(new TorchExtraManager);
|
|
}
|
|
return gInstance;
|
|
}
|
|
|
|
void TorchExtraManager::insert(const std::string& name, std::shared_ptr<Transform> transform) {
|
|
OpCount::get()->insertOp("TORCH", name);
|
|
mTransform.insert(std::make_pair(name, transform));
|
|
}
|
|
std::shared_ptr<TorchExtraManager::Transform> TorchExtraManager::find(const std::string& name) const {
|
|
auto iter = mTransform.find(name);
|
|
if (iter == mTransform.end()) {
|
|
return nullptr;
|
|
}
|
|
return iter->second;
|
|
}
|
|
|
|
static auto gRegister = []() {
|
|
auto extra = TorchExtraManager::get();
|
|
auto judge = [extra](EXPRP expr) {
|
|
auto op = expr->get();
|
|
if (nullptr == op) {
|
|
return false;
|
|
}
|
|
if (op->type() != OpType_Extra) {
|
|
return false;
|
|
}
|
|
auto engine = op->main_as_Extra()->engine()->str();
|
|
if (engine != "Torch") {
|
|
return false;
|
|
}
|
|
auto type = op->main_as_Extra()->type()->str();
|
|
if (extra->find(type) == nullptr) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
auto modify = [extra](EXPRP expr) {
|
|
auto op = expr->get();
|
|
MNN_ASSERT(op->type() == OpType_Extra);
|
|
auto type = op->main_as_Extra()->type()->str();
|
|
auto transformer = extra->find(type);
|
|
MNN_ASSERT(nullptr != transformer);
|
|
auto newExpr = transformer->onExecute(expr);
|
|
if (nullptr == newExpr) {
|
|
MNN_ERROR("Convert TorchScript's Op %s , type = %s, failed, may be some node is not const\n", expr->name().c_str(),
|
|
type.c_str());
|
|
return false;
|
|
}
|
|
Expr::replace(expr, newExpr);
|
|
return true;
|
|
};
|
|
TemplateMerge::getInstance("TorchExtra").insertTemplate("TorchExtraManager", judge, modify);
|
|
return true;
|
|
}();
|
|
} // namespace Express
|
|
} // namespace MNN
|