We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407f0bc commit 9d09d0aCopy full SHA for 9d09d0a
src/plugins/intel_gpu/src/graph/include/reshape_inst.h
@@ -44,7 +44,7 @@ struct typed_program_node<reshape> : public typed_program_node_base<reshape> {
44
return false;
45
46
// oneDNN supports padded input of outer axis only for buffer fusing on static shape
47
- if (!has_outer_padding_offset() && get_users().front()->get_preferred_impl_type() == impl_types::onednn)
+ if (!has_outer_padding_offset() && get_users().size() == 1 && get_users().front()->get_preferred_impl_type() == impl_types::onednn)
48
49
50
// TODO: If user is RoPE or MVN and dynamic padding exists, ouput padding propagation is not supported in the base mode
0 commit comments