Skip to content

Commit

Permalink
[CPU] Enable cache for MVN (openvinotoolkit#9549)
Browse files Browse the repository at this point in the history
  • Loading branch information
mangguo321 authored Jan 24, 2022
1 parent 7114253 commit 413fee2
Show file tree
Hide file tree
Showing 5 changed files with 825 additions and 580 deletions.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/mkldnn_lrn_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bool LrnKey::operator==(const LrnKey &rhs) const {
retVal = retVal && inp0 && rhs.inp0 && inp0->getDnnlDesc() == rhs.inp0->getDnnlDesc();
}

retVal = retVal && implType == rhs.implType && alg == rhs.alg && alg == rhs.alg && size == rhs.size && k == rhs.k &&
retVal = retVal && implType == rhs.implType && alg == rhs.alg && size == rhs.size && k == rhs.k &&
alpha == rhs.alpha && beta == rhs.beta;
return retVal;
}
Expand Down
Loading

0 comments on commit 413fee2

Please sign in to comment.