![]() |
Return all the tf.Operation
which are connected to an op in ops.
tf.contrib.graph_editor.get_ops_ios(
ops,
control_inputs=False,
control_outputs=None,
control_ios=None
)
Args:
ops
: an object convertible to a list oftf.Operation
.control_inputs
: A boolean indicating whether control inputs are enabled.control_outputs
: An instance ofutil.ControlOutputs
orNone
. If notNone
, control outputs are enabled.control_ios
: An instance ofutil.ControlOutputs
orNone
. If notNone
, both control inputs and control outputs are enabled. This is equivalent to setcontrol_inputs
toTrue
andcontrol_outputs
to theutil.ControlOutputs
instance.
Returns:
All the tf.Operation
surrounding the given ops.
Raises:
TypeError
: ifops
cannot be converted to a list oftf.Operation
.