From 58bfb56c532ad3df99b7a5f851c4e54b9cecb8f3 Mon Sep 17 00:00:00 2001 From: Mateusz Mikolajczyk Date: Wed, 18 Dec 2024 17:27:09 +0100 Subject: [PATCH] Fix formatting Signed-off-by: Mateusz Mikolajczyk --- src/plugins/intel_cpu/src/nodes/strided_slice.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/plugins/intel_cpu/src/nodes/strided_slice.cpp b/src/plugins/intel_cpu/src/nodes/strided_slice.cpp index d28aaede5d31bc..0e157f59a8ab1e 100644 --- a/src/plugins/intel_cpu/src/nodes/strided_slice.cpp +++ b/src/plugins/intel_cpu/src/nodes/strided_slice.cpp @@ -343,9 +343,10 @@ bool StridedSlice::needShapeInfer() const { void StridedSlice::execute(dnnl::stream strm) { if (!execPtr) { if (!isDynamicNode() && !hasConstAttrInputs) { - // SliceScatter due to not having data dependency on shape may not call prepareParams when start/stop/step values are non-constant in Static execution. - // In Slice and SliceScatter op, prepareParams would be called by createPrimitive (if const inputs) or by updateDynamicParams in case of dynamic node. - StridedSlice::prepareParams(); + // SliceScatter due to not having data dependency on shape may not call prepareParams when start/stop/step + // values are non-constant in Static execution. In Slice and SliceScatter op, prepareParams would be called + // by createPrimitive (if const inputs) or by updateDynamicParams in case of dynamic node. + StridedSlice::prepareParams(); } else { OPENVINO_THROW(errorPrefix, "doesn't have compiled executor!"); }