Home
last modified time | relevance | path

Searched refs:while_ctxt (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
Dcontrol_flow_util.py291 while_ctxt = GetContainingWhileContext(op_ctxt)
294 if while_ctxt is None:
307 elif IsContainingContext(while_ctxt, input_while_ctxt):
311 elif (while_ctxt.grad_state and
312 IsContainingContext(while_ctxt.grad_state.forward_context,
321 elif (while_ctxt.grad_state and
322 while_ctxt.grad_state.forward_context is
329 input_while_ctxt.grad_state.forward_context is while_ctxt):
337 while_ctxt):
344 if while_ctxt:
[all …]
Dcontrol_flow_state.py37 def _GetMaxSizeFromNestedMaximumIterations(value, while_ctxt): argument
68 while while_ctxt not in (None, curr_ctxt):
69 max_iter = while_ctxt.maximum_iterations
74 "the tf.while_loop call ('%s')." % (value_name, while_ctxt.name))
96 (value_name, max_iter.name, while_ctxt.name, curr_ctxt_name,
102 while_ctxt = util.GetContainingWhileContext(
103 while_ctxt.outer_context, stop_ctxt=curr_ctxt)
Dcontrol_flow_ops.py776 while_ctxt = self.GetWhileContext()
779 if while_ctxt is None:
785 if ctxt is not None and ctxt.GetWhileContext() == while_ctxt:
1658 context_def.while_ctxt.CopyFrom(self.to_proto(export_scope=export_scope))
3766 context_def.while_ctxt, import_scope=import_scope)
/external/tensorflow/tensorflow/core/protobuf/
Dcontrol_flow.proto27 WhileContextDef while_ctxt = 2; field