Example #1
0
 def __init__(self, transformer, sgv, dst_graph, dst_scope, src_scope):
     self.transformer = transformer
     self.sgv = sgv
     self.ops = frozenset(sgv.ops)
     self.control_outputs = util.ControlOutputs(sgv.graph)
     self.graph = sgv.graph
     self.scope = src_scope
     self.graph_ = dst_graph
     self.scope_ = dst_scope
     self.transformed_ops = {}
     self.transformed_ts = {}
Example #2
0
def clone_replace(f, replace):
    flatten_target_ts = util.flatten_tree(f)
    graph = util.get_unique_graph(flatten_target_ts, check_types=(tf_ops.Tensor))
    control_ios = util.ControlOutputs(graph)
    ops = select.get_walks_intersection_ops(list(iterkeys(replace)),
                                            flatten_target_ts,
                                            control_ios=control_ios)
    if not ops:
        # this happens with disconnected inputs
        return f
    else:
        return tf.contrib.graph_editor.graph_replace(f, replace)
Example #3
0
def graph_replace(target_ts,
                  replacement_ts,
                  dst_scope="",
                  src_scope="",
                  reuse_dst_scope=False):
    """Create a new graph which compute the targets from the replaced Tensors.

  Args:
    target_ts: a single tf.Tensor or an iterable of tf.Tensor.
    replacement_ts: dictionary mapping from original tensors to replaced tensors
    dst_scope: the destination scope.
    src_scope: the source scope.
    reuse_dst_scope: if True the dst_scope is re-used if it already exists.
      Otherwise, the scope is given a unique name based on the one given
      by appending an underscore followed by a digit (default).
  Returns:
    A single tf.Tensor or a list of target tf.Tensor, depending on
    the type of the input argument `target_ts`.
    The returned tensors are recomputed using the tensors from replacement_ts.
  Raises:
    ValueError: if the targets are not connected to replacement_ts.
  """
    # Identify operations in the graph that will change.
    # Start forward walk at Tensors that will be replaced, and
    # backward walk at the target output Tensors.
    flatten_target_ts = util.flatten_tree(target_ts)
    # Construct the forward control dependencies edges so that
    # the get_walks_intersection_ops can also traverse the
    # control dependencies.
    graph = util.get_unique_graph(flatten_target_ts,
                                  check_types=(tf_ops.Tensor))
    control_ios = util.ControlOutputs(graph)
    ops = select.get_walks_intersection_ops(list(iterkeys(replacement_ts)),
                                            flatten_target_ts,
                                            control_ios=control_ios)
    if not ops:
        raise ValueError("Targets and replacements are not connected!")

    # Complete ops to avoid malformed control flow.
    # TODO (fkp): Consider moving this function deeper (in the transformer?). id:1300
    # https://github.com/imdone/tensorflow/issues/1301
    _add_control_flow_ops(ops, control_ios)

    # Create a copy of the relevant subgraph
    unused_sgv_, info = copy_with_input_replacements(ops, replacement_ts, None,
                                                     dst_scope, src_scope,
                                                     reuse_dst_scope)
    # Return the transformed targets but keep the original if the transformed
    # counterpart cannot be found
    missing_fn = lambda original_t: original_t
    return info.transformed(target_ts, missing_fn)
Example #4
0
 def __init__(self, sgv, dst_graph, dst_scope, src_scope):
   self.sgv = sgv
   self.sgv_inputs_set = frozenset(sgv.inputs)
   self.ops = frozenset(sgv.ops)
   self.control_outputs = util.ControlOutputs(sgv.graph)
   self.graph = sgv.graph
   self.scope = src_scope
   self.graph_ = dst_graph
   self.scope_ = dst_scope
   self.transformed_ops = {}
   self.transformed_ts = {}
   self.collections = dict((key, self.graph.get_collection(key))
                           for key in self.graph.get_all_collection_keys())
   self.cyclic_ops = []
   self.transform_original_op_handler = transform_op_if_inside_handler
Example #5
0
def graph_replace(target_ts, replacement_ts, dst_scope="",
                  src_scope="", reuse_dst_scope=False):
  """Create a new graph which compute the targets from the replaced Tensors.

  Args:
    target_ts: a single tf.Tensor or an iterabble of tf.Tensor.
    replacement_ts: dictionary mapping from original tensors to replaced tensors
    dst_scope: the destination scope.
    src_scope: the source scope.
    reuse_dst_scope: if True the dst_scope is re-used if it already exists.
      Otherwise, the scope is given a unique name based on the one given
      by appending an underscore followed by a digit (default).
  Returns:
    A single tf.Tensor or a list of target tf.Tensor, depending on
    the type of the input argument `target_ts`.
    The returned tensors are recomputed using the tensors from replacement_ts.
  Raises:
    ValueError: if the targets are not connected to replacement_ts.
  """
  # Identify operations in the graph that will change.
  # Start forward walk at Tensors that will be replaced, and
  # backward walk at the target output Tensors.
  flatten_target_ts = util.flatten_tree(target_ts)
  # Construct the forward control dependencies edges so that
  # the get_walks_intersection_ops can also traverse the
  # control dependencies.
  graph = util.get_unique_graph(flatten_target_ts, check_types=(tf_ops.Tensor))
  control_ios = util.ControlOutputs(graph)
  ops = select.get_walks_intersection_ops(replacement_ts.keys(),
                                          flatten_target_ts,
                                          control_ios=control_ios)
  if not ops:
    raise ValueError("Targets and replacements are not connected!")
  # Create a copy of the relevant subgraph
  _, info = copy_with_input_replacements(
      ops, replacement_ts, None, dst_scope, src_scope, reuse_dst_scope)
  # Return the transformed targets
  return info.transformed(target_ts)
Example #6
0
 def __init__(self, sgv, dst_graph, dst_scope, src_scope):
   self.sgv = sgv
   self.sgv_inputs_set = frozenset(sgv.inputs)
   self.ops = frozenset(sgv.ops)
   self.control_outputs = util.ControlOutputs(sgv.graph)
   self.graph = sgv.graph
   self.scope = src_scope
   self.graph_ = dst_graph
   self.scope_ = dst_scope
   self.transformed_ops = {}
   self.transformed_ts = {}
   self.collections = dict((key, self.graph.get_collection(key))
                           for key in self.graph.get_all_collection_keys())
   self.cyclic_ops = []
   self.transform_original_op_handler = transform_op_if_inside_handler
   # The graph is transformed op by op, in the same order the original ops
   # were created. However, this is sometimes not possible due to cycles
   # (i.e. while loops). So when the transformer creates a new op whose
   # inputs do not exist yet, temporary placeholders are created and stored
   # in this `tmp_cyclic_ts` container. During a second pass,
   # those temporary tensors are replaced by the proper transformed tensors
   # (see the function `_finalize_cycles`).
   self.tmp_cyclic_ts = []