Skip to content

Commit 460fa30

Browse files
committed
fmt + tidy
1 parent 163ce78 commit 460fa30

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/plugins/intel_cpu/src/graph.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,11 +1598,11 @@ class UpdateNodes : public UpdateNodesBase {
15981598

15991599
/* group all the profiling macros into a single one
16001600
* to avoid cluttering a core logic */
1601-
#define VERBOSE_PERF_DUMP_ITT_DEBUG_LOG(ittScope, node, config) \
1602-
VERBOSE(node, (config).debugCaps.verbose); \
1603-
PERF(node, (config).collectPerfCounters); \
1604-
DUMP(node, (config).debugCaps, infer_count); \
1605-
OV_ITT_SCOPED_TASK_BASE(ittScope, (node)->perfCounters().execute); \
1601+
#define VERBOSE_PERF_DUMP_ITT_DEBUG_LOG(ittScope, node, config) \
1602+
VERBOSE(node, (config).debugCaps.verbose); \
1603+
PERF(node, (config).collectPerfCounters); \
1604+
DUMP(node, (config).debugCaps, infer_count); \
1605+
OV_ITT_SCOPED_TASK_BASE(ittScope, (node)->perfCounters().execute); \
16061606
DEBUG_LOG(*(node));
16071607

16081608
inline void Graph::ExecuteNode(const NodePtr& node, SyncInferRequest* request, int numaId) const {

src/plugins/intel_cpu/src/node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class Node {
214214
openvino::itt::handle<Tag<NodeType, 5>>(type_name + "::initOptimalPrimitiveDescriptor");
215215
}
216216

217-
openvino::itt::handle_t execute;
217+
openvino::itt::handle_t execute{};
218218
openvino::itt::handle_t getSupportedDescriptors;
219219
openvino::itt::handle_t initSupportedPrimitiveDescriptors;
220220
openvino::itt::handle_t filterSupportedPrimitiveDescriptors;

0 commit comments

Comments
 (0)