We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba792c commit 87c4196Copy full SHA for 87c4196
src/plugins/intel_gpu/src/graph/graph_optimizer/basic_memory_dependencies.cpp
@@ -61,7 +61,7 @@ void basic_memory_dependencies::run(program& p) {
61
}
62
63
// onednn concatenation doesn't support non-zero padding which can occur for unaligned feature.
64
- if (node->is_type<concatenation>()) {
+ if (node->is_type<concatenation>() && format::is_blocked(node->get_output_layout().format)) {
65
node->can_share_buffer(false);
66
for (auto& dep : node->get_dependencies()) {
67
dep.first->can_share_buffer(false);
0 commit comments