We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e77238b commit a6303c8Copy full SHA for a6303c8
src/plugins/intel_gpu/src/graph/graph_optimizer/prepare_buffer_fusing.cpp
@@ -503,11 +503,15 @@ void prepare_buffer_fusing::run(program& p) {
503
return;
504
if (user->is_type<loop>() || user->is_type<non_max_suppression>())
505
506
+ }
507
+ for (auto user : node.get_users()) {
508
if (user->is_type<reshape>()) {
509
auto& reshape_node = user->as<reshape>();
510
if (can_reshape_be_optimized(reshape_node))
511
512
}
513
514
515
if (user->is_type<experimental_detectron_roi_feature_extractor>() && user->get_dependency_index(node) == 0)
516
517
0 commit comments