From 273cfbd835824ca6eed3f47f5a1513a55640a16d Mon Sep 17 00:00:00 2001 From: Aleksandr Voron Date: Thu, 23 Jan 2025 15:13:12 +0100 Subject: [PATCH] fix clang --- src/plugins/intel_cpu/src/nodes/executors/acl/acl_pooling.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/intel_cpu/src/nodes/executors/acl/acl_pooling.cpp b/src/plugins/intel_cpu/src/nodes/executors/acl/acl_pooling.cpp index bd251f18572bb0..b722e13da0ae5e 100644 --- a/src/plugins/intel_cpu/src/nodes/executors/acl/acl_pooling.cpp +++ b/src/plugins/intel_cpu/src/nodes/executors/acl/acl_pooling.cpp @@ -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); @@ -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);