Skip to content

Commit

Permalink
[Common FE] Document get_input_by_reference better (openvinotoolkit#2…
Browse files Browse the repository at this point in the history
…6165)

**Details:** Document get_input_by_reference better

**Ticket:** TBD

Signed-off-by: Kazantsev, Roman <[email protected]>
  • Loading branch information
rkazants authored Aug 21, 2024
1 parent 50ffcbc commit 28950f6
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ class FRONTEND_API NodeContext {
FRONT_END_NOT_IMPLEMENTED(get_input);
}

/// \brief Returns the input by reference. The reference value can be changed by consuming operation
/// \brief Returns output of Variable node (or Variable value).
/// Variable is a special node that stores a value represented with a sub-graph.
/// Variable has a concrete value at each conversion step.
/// The current (consuming) operation node can change its value
/// so consumers of this Variable will have a new value at next conversion steps.
/// See ov::frontend::Variable class for more details.
virtual Output<Node> get_input_by_reference(int idx) const {
FRONT_END_NOT_IMPLEMENTED(get_input_by_reference);
}
Expand Down

0 comments on commit 28950f6

Please sign in to comment.