Skip to content

Commit 28950f6

Browse files
authored
[Common FE] Document get_input_by_reference better (openvinotoolkit#26165)
**Details:** Document get_input_by_reference better **Ticket:** TBD Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
1 parent 50ffcbc commit 28950f6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/frontends/common/include/openvino/frontend/node_context.hpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ class FRONTEND_API NodeContext {
4848
FRONT_END_NOT_IMPLEMENTED(get_input);
4949
}
5050

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.
5257
virtual Output<Node> get_input_by_reference(int idx) const {
5358
FRONT_END_NOT_IMPLEMENTED(get_input_by_reference);
5459
}

0 commit comments

Comments
 (0)