Searched refs:capture_by_value (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/python/framework/ |
D | func_graph.py | 157 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)
|
D | function.py | 214 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,
|
D | function_test.py | 1061 @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/ |
D | function.py | 1223 capture_by_value=None): argument 1259 self._capture_by_value = capture_by_value 1491 capture_by_value=self._capture_by_value),
|
D | function_test.py | 614 trivial_function, 'test', capture_by_value=True) 629 trivial_function, 'test', capture_by_value=True)
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | dataset_ops.py | 1440 @function.Defun(capture_by_value=True, whitelisted_stateful_ops=all_ds_ops)
|