Skip to content

Commit

Permalink
fix clang
Browse files Browse the repository at this point in the history
  • Loading branch information
alvoron committed Jan 23, 2025
1 parent e3d1155 commit 273cfbd
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_pooling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ bool AclPoolingExecutor::isSupported(const TensorInfo& srcTensorInfo,
if (dataLayout == arm_compute::DataLayout::NHWC) {
changeLayoutToNH_C({&indShape});
}
//U32 is specified since this is the only data type supported by ACL
// U32 is specified since this is the only data type supported by ACL
TensorInfo indTensorInfo = TensorInfo(indShape, 1, arm_compute::DataType::U32, dataLayout);
arm_compute::Status s =
arm_compute::NEPoolingLayer::validate(&srcTensorInfo, &dstTensorInfo, *pool_info, &indTensorInfo);
Expand Down Expand Up @@ -185,7 +185,7 @@ bool AclPoolingExecutor::init(const PoolingAttrs& poolingAttrs,
if (dstTensorInfo.data_layout() == arm_compute::DataLayout::NHWC) {
changeLayoutToNH_C({&indShape});
}
//U32 is specified since this is the only data type supported by ACL
// U32 is specified since this is the only data type supported by ACL
TensorInfo indTensorInfo =
TensorInfo(indShape, 1, arm_compute::DataType::U32, getAclDataLayoutByMemoryDesc(dstDescs[1]));
indTensor.allocator()->init(indTensorInfo);
Expand Down

0 comments on commit 273cfbd

Please sign in to comment.