tf.contrib.graph_editor.make_list_of_op

View source on GitHub

Convert ops to a list of tf.Operation.

ops can be an iterable of tf.Operation, a tf.Graph or a single operation.
check_graph if True check if all the operations belong to the same graph.
allow_graph if False a tf.Graph cannot be converted.
ignore_ts if True, silently ignore tf.Tensor.

A newly created list of tf.Operation.

TypeError if ops cannot be converted to a list of tf.Operation or, if check_graph is True, if all the ops do not belong to the same graph.