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);