[GPU] Fix graph dump issue. (#8965)
This commit is contained in:
parent
a14ac5236d
commit
a9a583eb42
@ -436,5 +436,10 @@ void graph_initializations::run(program& p) {
|
|||||||
}
|
}
|
||||||
set_outputs(p);
|
set_outputs(p);
|
||||||
p.get_processing_order().calc_processing_order(p);
|
p.get_processing_order().calc_processing_order(p);
|
||||||
|
|
||||||
|
for (auto& node : p.get_processing_order()) {
|
||||||
|
if (!node->is_type<data>())
|
||||||
|
node->get_output_layout();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} // namespace cldnn
|
} // namespace cldnn
|
||||||
|
@ -456,11 +456,6 @@ void program::init_graph() {
|
|||||||
OV_ITT_SCOPED_TASK(itt::domains::CLDNN, "ProgramImpl::InitGraph");
|
OV_ITT_SCOPED_TASK(itt::domains::CLDNN, "ProgramImpl::InitGraph");
|
||||||
apply_opt_pass<graph_initializations>();
|
apply_opt_pass<graph_initializations>();
|
||||||
|
|
||||||
for (auto& node : processing_order) {
|
|
||||||
if (!node->is_type<data>())
|
|
||||||
node->get_output_layout();
|
|
||||||
}
|
|
||||||
|
|
||||||
apply_opt_pass<calculate_prior_boxes>();
|
apply_opt_pass<calculate_prior_boxes>();
|
||||||
|
|
||||||
apply_opt_pass<mark_nodes>();
|
apply_opt_pass<mark_nodes>();
|
||||||
|
Loading…
Reference in New Issue
Block a user