Home
last modified time | relevance | path

Searched refs:capture_by_value (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/framework/
Dfunc_graph.py157 def __init__(self, name, collections=None, capture_by_value=None): argument
189 if capture_by_value is not None:
190 self.capture_by_value = capture_by_value
193 self.capture_by_value = self.outer_graph.capture_by_value
195 self.capture_by_value = False
426 if self.capture_by_value and op_type in ["ReadVariableOp",
527 capture_by_value=None, argument
587 capture_by_value=capture_by_value)
Dfunction.py214 capture_by_value=False, argument
255 self._capture_by_value = capture_by_value
649 def __init__(self, name, capture_by_value, whitelisted_stateful_ops, argument
652 self._capture_by_value = capture_by_value
839 capture_by_value=False, argument
877 func_graph = _FuncGraph(name, capture_by_value, whitelisted_stateful_ops,
Dfunction_test.py1061 @function.Defun(capture_by_value=True)
1070 @function.Defun(capture_by_value=True, whitelisted_stateful_ops=set([t.op]))
1467 @function.Defun(dtypes.float32, capture_by_value=True)
1471 @function.Defun(dtypes.float32, capture_by_value=True)
/external/tensorflow/tensorflow/python/eager/
Dfunction.py1223 capture_by_value=None): argument
1259 self._capture_by_value = capture_by_value
1491 capture_by_value=self._capture_by_value),
Dfunction_test.py614 trivial_function, 'test', capture_by_value=True)
629 trivial_function, 'test', capture_by_value=True)
/external/tensorflow/tensorflow/python/data/ops/
Ddataset_ops.py1440 @function.Defun(capture_by_value=True, whitelisted_stateful_ops=all_ds_ops)