Searched refs:while_ctxt (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | control_flow_util.py | 287 while_ctxt = GetContainingWhileContext(op_ctxt) 290 if while_ctxt is None: 303 elif IsContainingContext(while_ctxt, input_while_ctxt): 307 elif (while_ctxt.grad_state and 308 IsContainingContext(while_ctxt.grad_state.forward_context, 317 elif (while_ctxt.grad_state and 318 while_ctxt.grad_state.forward_context is 325 input_while_ctxt.grad_state.forward_context is while_ctxt): 333 while_ctxt): 340 if while_ctxt: [all …]
|
D | control_flow_state.py | 33 def _GetMaxSizeFromNestedMaximumIterations(value, while_ctxt): argument 64 while while_ctxt not in (None, curr_ctxt): 65 max_iter = while_ctxt.maximum_iterations 70 "the tf.while_loop call ('%s')." % (value_name, while_ctxt.name)) 92 (value_name, max_iter.name, while_ctxt.name, curr_ctxt_name, 98 while_ctxt = util.GetContainingWhileContext( 99 while_ctxt.outer_context, stop_ctxt=curr_ctxt)
|
D | control_flow_ops.py | 723 while_ctxt = self.GetWhileContext() 726 if while_ctxt is None: 732 if ctxt is not None and ctxt.GetWhileContext() == while_ctxt: 1616 context_def.while_ctxt.CopyFrom(self.to_proto(export_scope=export_scope)) 3749 context_def.while_ctxt, import_scope=import_scope)
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | control_flow.proto | 27 WhileContextDef while_ctxt = 2; field
|