Searched refs:while_ctxt (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | control_flow_util.py | 291 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 …]
|
D | control_flow_state.py | 37 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)
|
D | control_flow_ops.py | 776 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/ |
D | control_flow.proto | 27 WhileContextDef while_ctxt = 2; field
|