forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime_attribute.cpp
More file actions
43 lines (32 loc) · 962 Bytes
/
runtime_attribute.cpp
File metadata and controls
43 lines (32 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "openvino/core/runtime_attribute.hpp"
#include "ngraph/node.hpp"
#include "openvino/core/attribute_visitor.hpp"
namespace ov {
std::string RuntimeAttribute::to_string() const {
return {};
}
bool RuntimeAttribute::visit_attributes(AttributeVisitor&) {
return false;
}
Any RuntimeAttribute::init(const std::shared_ptr<ngraph::Node>& node) const {
return {};
}
Any RuntimeAttribute::merge(const ngraph::NodeVector& nodes) const {
return {};
}
Any RuntimeAttribute::merge(const ngraph::OutputVector& outputs) const {
return {};
}
bool RuntimeAttribute::is_copyable() const {
return true;
}
bool RuntimeAttribute::is_copyable(const std::shared_ptr<Node>& to) const {
return is_copyable();
}
std::ostream& operator<<(std::ostream& os, const RuntimeAttribute& attrubute) {
return os << attrubute.to_string();
}
} // namespace ov