Update the pattern of conv2dbackprop_eltwise_fusion pass. Only match Conv2dBackpropInput+ReluGradV2.

This commit is contained in:
huanghui 2020-09-19 11:00:43 +08:00
parent ba2fe29691
commit af0a11ff69
1 changed files with 1 additions and 3 deletions

View File

@ -58,9 +58,7 @@ void Conv2DBackpropEltwiseFusionPass::MatchSingleFusionPattern(const session::Ke
}
auto cnode = node->cast<CNodePtr>();
MS_EXCEPTION_IF_NULL(cnode);
if (AnfAlgo::GetKernelType(cnode) == KernelType::TBE_KERNEL &&
AnfAlgo::GetFusionType(cnode) == kernel::FusionType::ELEMWISE &&
(cnode->inputs().size() == ELTWISE_INPUT_SIZE || cnode->inputs().size() == ELTWISE_DOUBLE_IN_INPUT_SIZE)) {
if (AnfAlgo::GetCNodeName(cnode) == kReluGradV2OpName) {
MatchConv2DBackpropInputEltwise(cnode, kernel_graph, candidate_fusion);
}
}