File tree 1 file changed +6
-1
lines changed
src/frontends/common/include/openvino/frontend
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,12 @@ class FRONTEND_API NodeContext {
48
48
FRONT_END_NOT_IMPLEMENTED (get_input);
49
49
}
50
50
51
- // / \brief Returns the input by reference. The reference value can be changed by consuming operation
51
+ // / \brief Returns output of Variable node (or Variable value).
52
+ // / Variable is a special node that stores a value represented with a sub-graph.
53
+ // / Variable has a concrete value at each conversion step.
54
+ // / The current (consuming) operation node can change its value
55
+ // / so consumers of this Variable will have a new value at next conversion steps.
56
+ // / See ov::frontend::Variable class for more details.
52
57
virtual Output<Node> get_input_by_reference (int idx) const {
53
58
FRONT_END_NOT_IMPLEMENTED (get_input_by_reference);
54
59
}
You can’t perform that action at this time.
0 commit comments