Files
2026-07-13 13:33:03 +08:00

55 lines
1.3 KiB
C++

//
// ReshapeTorch.cpp
// MNNConverter
//
// Created by MNN on 2021/05/12.
// Copyright © 2018, Alibaba Group Holding Limited
//
#include <stdio.h>
#include "torchOpConverter.hpp"
DECLARE_OP_CONVERTER(ReshapeTorch);
MNN::OpType ReshapeTorch::opType() {
return MNN::OpType_Reshape;
}
MNN::OpParameter ReshapeTorch::type() {
return MNN::OpParameter_Reshape;
}
std::vector<int> ReshapeTorch::inputTensorIdx() {
return {0, 1};
}
void ReshapeTorch::run(MNN::OpT* dstOp, const torch::jit::Node* node, TorchScope* scope) {
auto param = new MNN::ReshapeT;
dstOp->main.value = param;
}
REGISTER_CONVERTER(ReshapeTorch, reshape);
REGISTER_CONVERTER(ReshapeTorch, view);
REGISTER_CONVERTER(ReshapeTorch, expand);
DECLARE_OP_CONVERTER(ReshapeAsTorch);
MNN::OpType ReshapeAsTorch::opType() {
return MNN::OpType_Extra;
}
MNN::OpParameter ReshapeAsTorch::type() {
return MNN::OpParameter_Extra;
}
std::vector<int> ReshapeAsTorch::inputTensorIdx() {
return {0, 1};
}
void ReshapeAsTorch::run(MNN::OpT* dstOp, const torch::jit::Node* node, TorchScope* scope) {
auto extra = new MNN::ExtraT;
dstOp->main.value = extra;
extra->engine = "Torch";
extra->type = "reshape_as";
}
REGISTER_CONVERTER(ReshapeAsTorch, reshape_as);
REGISTER_CONVERTER(ReshapeAsTorch, view_as);
REGISTER_CONVERTER(ReshapeAsTorch, expand_as);