an iterable of operations from which the backward graph
walk starts. If a list of tensors is given instead, the seed_ops are set
to be the generators of those tensors.
inclusive
if True the given seed_ops are also part of the resulting set.
within_ops
an iterable of tf.Operation within which the search is
restricted. If within_ops is None, the search is performed within
the whole graph.
within_ops_fn
if provided, a function on ops that should return True iff
the op is within the graph traversal. This can be used along within_ops,
in which case an op is within if it is also in within_ops.
stop_at_ts
an iterable of tensors at which the graph walk stops.
control_inputs
if True, control inputs will be used while moving backward.
Returns
A Python set of all the tf.Operation behind seed_ops.
Raises
TypeError
if seed_ops or within_ops cannot be converted to a list of
tf.Operation.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[],null,["# tf.contrib.graph_editor.get_backward_walk_ops\n\n\u003cbr /\u003e\n\n|------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/contrib/graph_editor/select.py#L459-L496) |\n\nDo a backward graph walk and return all the visited ops. (deprecated) \n\n tf.contrib.graph_editor.get_backward_walk_ops(\n seed_ops, inclusive=True, within_ops=None, within_ops_fn=None, stop_at_ts=(),\n control_inputs=False\n )\n\n| **Warning:** THIS FUNCTION IS DEPRECATED. It will be removed after 2019-06-06. Instructions for updating: Please use tensorflow.python.ops.op_selector.get_backward_walk_ops.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `seed_ops` | an iterable of operations from which the backward graph walk starts. If a list of tensors is given instead, the seed_ops are set to be the generators of those tensors. |\n| `inclusive` | if True the given seed_ops are also part of the resulting set. |\n| `within_ops` | an iterable of [`tf.Operation`](../../../tf/Operation) within which the search is restricted. If `within_ops` is `None`, the search is performed within the whole graph. |\n| `within_ops_fn` | if provided, a function on ops that should return True iff the op is within the graph traversal. This can be used along within_ops, in which case an op is within if it is also in within_ops. |\n| `stop_at_ts` | an iterable of tensors at which the graph walk stops. |\n| `control_inputs` | if True, control inputs will be used while moving backward. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A Python set of all the [`tf.Operation`](../../../tf/Operation) behind `seed_ops`. ||\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Raises ------ ||\n|-------------|---------------------------------------------------------------------------------------------------------|\n| `TypeError` | if `seed_ops` or `within_ops` cannot be converted to a list of [`tf.Operation`](../../../tf/Operation). |\n\n\u003cbr /\u003e"]]