Skip to content

Commit cf21726

Browse files
committed
test.
1 parent 852448e commit cf21726

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/plugins/intel_gpu/src/graph/graph_optimizer/prepare_buffer_fusing.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ auto available_pred = [](const program_node& input) {
6868
!input.is_type<activation>() && !input.is_type<deconvolution>() && !input.is_type<concatenation>() &&
6969
!input.is_type<crop>() && !input.is_type<eltwise>() && !input.is_type<resample>() &&
7070
!input.is_type<reorder>() && !(input.is_type<permute>() && !input.as<permute>().is_rotating_except_batch()) &&
71-
!input.is_type<strided_slice>())
71+
!input.is_type<strided_slice>() && !input.is_type<reshape>())
7272
return false;
7373
return true;
7474
};
@@ -158,10 +158,10 @@ bool concat_in_place_optimization::match(const program_node& concat_node,
158158
}
159159
}
160160
// TODO: handle optimized reshape
161-
if (pred.first->is_type<reshape>() && pred.first->can_be_optimized()) {
162-
GPU_DEBUG_TRACE_DETAIL << "[prepare_buffer_fusing_match_fail] : " << pred.first->id() << " , " << concat_node.id() << std::endl;
163-
return false;
164-
}
161+
// if (pred.first->is_type<reshape>() && pred.first->can_be_optimized()) {
162+
// GPU_DEBUG_TRACE_DETAIL << "[prepare_buffer_fusing_match_fail] : " << pred.first->id() << " , " << concat_node.id() << std::endl;
163+
// return false;
164+
// }
165165
// TODO: Investigate if this condition is needed
166166
if (pred.first->get_users().size() > 2) {
167167
GPU_DEBUG_TRACE_DETAIL << "[prepare_buffer_fusing_match_fail] : " << pred.first->id() << " , " << concat_node.id() << std::endl;

0 commit comments

Comments
 (0)