File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
common/itt/include/openvino Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -700,7 +700,7 @@ bool ov::Node::evaluate_symbol(TensorSymbolVector& output_symbols) const {
700700}
701701
702702bool 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
717717bool 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 ;
You can’t perform that action at this time.
0 commit comments