Skip to content

Commit

Permalink
Update acl_deconv.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
allnes authored Nov 7, 2024
1 parent 148a1ce commit 63db949
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plugins/intel_cpu/src/nodes/executors/acl/acl_deconv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ bool AclDeconvExecutorBuilder::customIsSupported(const DeconvAttrs &deconvAttrs,
auto deconv_info = aclDeconvTensorInfo.deconv_info;

// After stride=8 up-sampling in ACL Deconvolution layer slower than reference
if (deconv_info.stride().first >= 8 || deconv_info.stride().second >= 8) {
DEBUG_LOG("AclDeconvExecutor does not support strides > 8:");
return false;
}
// if (deconv_info.stride().first >= 8 || deconv_info.stride().second >= 8) {
// DEBUG_LOG("AclDeconvExecutor does not support strides > 8:");
// return false;
// }

unsigned int dilation_x = (deconvAttrs.dilation.size() > 1) ? deconvAttrs.dilation.at(1) : deconvAttrs.dilation.at(0);
unsigned int dilation_y = deconvAttrs.dilation.at(0);
Expand Down

0 comments on commit 63db949

Please sign in to comment.