| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include "fuse_constant_expression.h" |
| |
|
| | #include <string.h> |
| | #include <algorithm> |
| | #include "pass_level2.h" |
| |
|
| | namespace pnnx { |
| |
|
| | void fuse_constant_expression(Graph& graph) |
| | { |
| | while (1) |
| | { |
| | bool matched = false; |
| |
|
| | for (size_t i = 0; i < graph.ops.size(); i++) |
| | { |
| | Operator* op = graph.ops[i]; |
| |
|
| | if (op->type != "pnnx.Expression") |
| | continue; |
| |
|
| | if (op->inputs.size() != 0) |
| | { |
| | |
| | continue; |
| | } |
| |
|
| | Operand* expr_output = op->outputs[0]; |
| |
|
| | std::vector<Operator*> new_consumers; |
| | for (auto x : expr_output->consumers) |
| | { |
| | if (x->inputnames.empty()) |
| | { |
| | |
| | new_consumers.push_back(x); |
| | continue; |
| | } |
| | } |
| |
|
| | if (new_consumers == expr_output->consumers) |
| | continue; |
| |
|
| | matched = true; |
| |
|
| | Parameter ep = Parameter::parse_from_string(op->params.at("expr").s); |
| |
|
| | for (auto& x : expr_output->consumers) |
| | { |
| | if (x->inputnames.empty()) |
| | { |
| | |
| | continue; |
| | } |
| |
|
| | std::vector<Operand*> new_inputs; |
| | std::vector<std::string> new_inputnames; |
| | for (size_t j = 0; j < x->inputs.size(); j++) |
| | { |
| | if (x->inputs[j] == expr_output) |
| | { |
| | |
| | x->params[x->inputnames[j]] = ep; |
| | } |
| | else |
| | { |
| | new_inputs.push_back(x->inputs[j]); |
| | new_inputnames.push_back(x->inputnames[j]); |
| | } |
| | } |
| |
|
| | x->inputs = new_inputs; |
| | x->inputnames = new_inputnames; |
| | } |
| |
|
| | expr_output->consumers = new_consumers; |
| |
|
| | if (expr_output->consumers.empty()) |
| | { |
| | |
| |
|
| | expr_output->producer = 0; |
| | graph.operands.erase(std::find(graph.operands.begin(), graph.operands.end(), expr_output)); |
| | delete expr_output; |
| |
|
| | op->inputs.clear(); |
| | op->outputs.clear(); |
| |
|
| | graph.ops.erase(std::find(graph.ops.begin(), graph.ops.end(), op)); |
| | delete op; |
| | } |
| |
|
| | break; |
| | } |
| |
|
| | if (!matched) |
| | break; |
| | } |
| | } |
| |
|
| | } |
| |
|