mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00

* Add notes for tensors * Optimize some apis * move some warnings * Support build with Paddle2ONNX * Add protobuf support * Fix compile on mac * add clearn package script * Add paddle2onnx code * remove submodule * Add onnx ocde * remove softlink * add onnx code * fix error * Add cmake file * fix patchelf * update paddle2onnx * Delete .gitmodules --------- Co-authored-by: PaddleCI <paddle_ci@example.com> Co-authored-by: pangyoki <pangyoki@126.com> Co-authored-by: jiangjiajun <jiangjiajun@baidu.lcom>
109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "onnx/common/assertions.h"
|
|
|
|
#include "onnxoptimizer/pass.h"
|
|
|
|
namespace ONNX_NAMESPACE {
|
|
namespace optimization {
|
|
|
|
Pass::Pass(
|
|
PassType pass_type,
|
|
PassEfficiency pass_efficiency,
|
|
PassOptimizationType pass_optimization_type) {
|
|
this->pass_type = pass_type;
|
|
this->pass_efficiency = pass_efficiency;
|
|
this->pass_optimization_type = pass_optimization_type;
|
|
}
|
|
|
|
Pass::~Pass() {}
|
|
|
|
unsigned int Pass::DescendOnGraphAttributesAndCount(
|
|
Node* n,
|
|
std::function<unsigned int(Graph&)> fn) {
|
|
unsigned int num_changes = 0;
|
|
for (auto name : n->attributeNames()) {
|
|
auto kind = n->kindOf(name);
|
|
if (kind == AttributeKind::g) {
|
|
num_changes += fn(*n->g(name));
|
|
}
|
|
if (kind == AttributeKind::gs) {
|
|
for (auto& g : n->gs(name)) {
|
|
num_changes += fn(*g);
|
|
}
|
|
}
|
|
}
|
|
return num_changes;
|
|
}
|
|
|
|
void Pass::DescendOnGraphAttributesUnconstrained(
|
|
Node* n,
|
|
std::function<void(Graph&)> fn) {
|
|
for (auto name : n->attributeNames()) {
|
|
auto kind = n->kindOf(name);
|
|
if (kind == AttributeKind::g) {
|
|
fn(*n->g(name));
|
|
}
|
|
if (kind == AttributeKind::gs) {
|
|
for (auto& g : n->gs(name)) {
|
|
fn(*g);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
PredicateBasedPass::~PredicateBasedPass() {}
|
|
|
|
unsigned int PredicateBasedPass::_runPassInternal(Graph& graph) {
|
|
unsigned int num_changes = false;
|
|
for (auto it = graph.begin(); it != graph.end(); ++it) {
|
|
auto* n = *it;
|
|
num_changes += this->DescendOnGraphAttributesAndCount(
|
|
n, [this](Graph& g) { return _runPassInternal(g); });
|
|
if (this->patternMatchPredicate(n)) {
|
|
NodeDestroyType destroy_type = NodeDestroyType::DestroyZero;
|
|
num_changes += this->runTransform(n, graph, destroy_type);
|
|
|
|
if (destroy_type == NodeDestroyType::DestroyOne) {
|
|
it.destroyCurrent();
|
|
}
|
|
if (destroy_type == NodeDestroyType::DestroyTwo) {
|
|
it.destroyCurrent();
|
|
it.destroyCurrent();
|
|
}
|
|
}
|
|
}
|
|
return num_changes;
|
|
}
|
|
|
|
PassAnalysisType PredicateBasedPass::getPassAnalysisType() const {
|
|
return PassAnalysisType::CountBased;
|
|
}
|
|
|
|
std::shared_ptr<PostPassAnalysis> PredicateBasedPass::runPass(Graph& graph) {
|
|
bool initialized_pass = this->initializePass(graph);
|
|
unsigned int touched_optimizations = this->_runPassInternal(graph);
|
|
bool finalized_pass = this->finalizePass(graph);
|
|
|
|
return std::shared_ptr<PostPassAnalysis>(new CountBasedPassAnalysis(
|
|
this, touched_optimizations, initialized_pass, finalized_pass));
|
|
}
|
|
|
|
CountBasedPassAnalysis::CountBasedPassAnalysis(
|
|
Pass* pass,
|
|
unsigned int num_positive_transforms,
|
|
bool initialization_done,
|
|
bool finalization_done) {
|
|
this->pass = pass;
|
|
this->num_positive_transforms = num_positive_transforms;
|
|
this->initialization_done = initialization_done;
|
|
this->finalization_done = finalization_done;
|
|
}
|
|
|
|
FullGraphBasedPass::~FullGraphBasedPass() {}
|
|
|
|
} // namespace optimization
|
|
} // namespace ONNX_NAMESPACE
|