tf.contrib.graph_editor.make_list_of_op
make_list_of_op(
ops,
check_graph=True,
allow_graph=True,
ignore_ts=False
)
Defined in tensorflow/contrib/graph_editor/util.py.
See the guide: Graph Editor (contrib) > Module: util
Convert ops to a list of tf.Operation.
Args:
ops: can be an iterable oftf.Operation, atf.Graphor a single operation.check_graph: ifTruecheck if all the operations belong to the same graph.allow_graph: ifFalseatf.Graphcannot be converted.ignore_ts: if True, silently ignoretf.Tensor.
Returns:
A newly created list of tf.Operation.
Raises:
TypeError: if ops cannot be converted to a list oftf.Operationor, ifcheck_graphisTrue, if all the ops do not belong to the same graph.
