Skip to content

Commit

Permalink
[ARM CPU] Enable swish (openvinotoolkit#17542)
Browse files Browse the repository at this point in the history
  • Loading branch information
allnes authored May 17, 2023
1 parent 84b9262 commit 96a80ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_cpu/src/nodes/executors/acl/acl_eltwise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bool AclEltwiseExecutorBuilder::isSupported(const EltwiseAttrs& eltwiseAttrs,
// case Algorithm::EltwisePowerDynamic: // TODO: ACL version doesn't work https://github.com/ARM-software/ComputeLibrary/issues/1047
case Algorithm::EltwiseSoftRelu:
case Algorithm::EltwiseClamp:
//case Algorithm::EltwiseSwish: // TODO: efficientdet-d0 accuracy drops if ACL Swish is used
case Algorithm::EltwiseSwish: // TODO: CVS-109354: efficientdet-d0 accuracy drops if ACL Swish is used
case Algorithm::EltwisePrelu:
case Algorithm::EltwiseHswish:
if (!(checkPrecision({Precision::FP16, Precision::FP16}, Precision::FP16) ||
Expand Down Expand Up @@ -491,4 +491,4 @@ void AclEltwiseExecutor::exec(const std::vector<MemoryCPtr> &src, const std::vec
}
}
} // namespace intel_cpu
} // namespace ov
} // namespace ov

0 comments on commit 96a80ff

Please sign in to comment.