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,26 @@
//
// Shape.cpp
// MNNConverter
//
// Created by MNN on 2019/01/31.
// Copyright © 2018, Alibaba Group Holding Limited
//
#include <string.h>
#include "TfUtils.hpp"
#include "tfOpConverter.hpp"
DECLARE_OP_CONVERTER(ShapeTf);
MNN::OpType ShapeTf::opType() {
return MNN::OpType_Shape;
}
MNN::OpParameter ShapeTf::type() {
return MNN::OpParameter_NONE;
}
void ShapeTf::run(MNN::OpT *dstOp, TmpNode *srcNode) {
dstOp->main.value = nullptr;
}
REGISTER_CONVERTER(ShapeTf, Shape);