Skip to content

Commit ae09637

Browse files
committed
clang-tidy
1 parent 3bd0d50 commit ae09637

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/itt/include/openvino/itt.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class TaskChain {
169169
/**
170170
* @brief Construct TaskChain with defined annotation handle
171171
*/
172-
TaskChain(handle_t taskHandle, std::string&& prefix) noexcept : _prefix(std::forward<std::string>(prefix)) {
172+
TaskChain(handle_t taskHandle, std::string prefix) noexcept : _prefix(std::move(prefix)) {
173173
internal::taskBegin(domain(), taskHandle);
174174
}
175175

src/core/src/node.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ bool ov::Node::evaluate_symbol(TensorSymbolVector& output_symbols) const {
700700
}
701701

702702
bool ov::Node::can_constant_fold(const OutputVector& input_values) const {
703-
OV_ITT_SCOPED_TASK(ov::itt::domains::core, "Node::can_constant_fold");
703+
OV_ITT_SCOPED_TASK(ov::itt::domains::ov_core, "Node::can_constant_fold");
704704

705705
if (is_const_fold_disabled()) {
706706
return false;
@@ -715,7 +715,7 @@ bool ov::Node::can_constant_fold(const OutputVector& input_values) const {
715715
}
716716

717717
bool ov::Node::constant_fold(OutputVector& output_values, const OutputVector& input_values) {
718-
OV_ITT_SCOPED_TASK(ov::itt::domains::core, "Node::constant_fold");
718+
OV_ITT_SCOPED_TASK(ov::itt::domains::ov_core, "Node::constant_fold");
719719

720720
if (!Node::can_constant_fold(input_values)) {
721721
return false;

0 commit comments

Comments
 (0)