57 lines
1.7 KiB
57 lines
1.7 KiB
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. */
|
|
|
|
#include "paddle/fluid/inference/analysis/pass_manager.h"
|
|
#include "paddle/fluid/inference/analysis/fluid_to_data_flow_graph_pass.h"
|
|
|
|
namespace paddle {
|
|
namespace inference {
|
|
namespace analysis {
|
|
|
|
bool PassManager::Initialize(Argument* argument) {
|
|
argument_ = argument;
|
|
for (auto& pass : data_) {
|
|
LOG(WARNING) << "Initializing pass [" << pass->repr() << "]";
|
|
if (!pass->Initialize(argument)) {
|
|
LOG(ERROR) << "Failed to initialize pass [" << pass->repr() << "]";
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void DfgPassManager::RunAll() {
|
|
PADDLE_ENFORCE(argument_);
|
|
LOG(INFO) << "Total " << data_.size() << " Analysys passes";
|
|
for (auto& pass : data_) {
|
|
LOG(WARNING) << "Running Analysis pass [" << pass->repr() << "]";
|
|
pass->Run(argument_->main_dfg.get());
|
|
}
|
|
}
|
|
|
|
void NodePassManager::RunAll() {
|
|
PADDLE_ENFORCE(argument_);
|
|
PADDLE_ENFORCE(argument_->main_dfg.get());
|
|
auto trait = GraphTraits<DataFlowGraph>(*argument_->main_dfg).nodes_in_DFS();
|
|
for (auto& node : trait) {
|
|
for (auto& pass : data_) {
|
|
pass->Run(&node);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace analysis
|
|
} // namespace inference
|
|
} // namespace paddle
|