[CPU] fixed convolution outputShape in ConvDWConv fusing (#7239)

This commit is contained in:
Anton Voronov 2021-08-26 13:38:24 +03:00 committed by GitHub
parent 9ee57fe233
commit 4ef700c6e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1028,6 +1028,8 @@ void MKLDNNGraph::DropDWConvNode(const MKLDNNNodePtr &node) {
auto parentConv = parentConvEdge->getParent();
if (!parentConv) return;
parentConv->outputShapes[0] = node->outputShapes[0];
for (size_t i = 0; i < 1; i++) {
auto p_edge = parents[i].lock();
if (!p_edge) continue;