Home
last modified time | relevance | path

Searched refs:graph_function (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/eager/
Dfunction.py2998 (graph_function,
3000 return graph_function._call_flat(
3001 …filtered_flat_args, captured_inputs=graph_function.captured_inputs) # pylint: disable=protected-a…
3027 graph_function, _ = self._maybe_define_function(args, kwargs)
3028 return graph_function
3032 graph_function = self._get_concrete_function_internal_garbage_collected(
3038 graph_function._garbage_collector.release() # pylint: disable=protected-access
3039 return graph_function
3077 graph_function, _ = self._maybe_define_function(args, kwargs)
3080 graph_function.graph.internal_captures)
[all …]
Dfunction_test.py1194 graph_function = function.Function(
1197 self.assertAllEqual(graph_function(), 1.0)
1199 self.assertAllEqual(graph_function(), 1.0)
1209 graph_function = function.Function(
1212 self.assertAllEqual(graph_function(), 1.0)
1214 self.assertAllEqual(graph_function(), 1.0)
2784 graph_function = foo.get_concrete_function(v)
2785 self.assertLen(graph_function.inputs, 1)
2786 self.assertEmpty(graph_function.captured_inputs)
2788 self.assertEqual(float(graph_function(v)), 1.0)
[all …]
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Derror_handling.md94 graph_function, _, _ = self._maybe_define_function(args, kwargs)
96 graph_function = self._create_graph_function(args, kwargs)
/external/tensorflow/tensorflow/python/kernel_tests/
Dvariable_scope_test.py48 def run_inside_wrap_function_in_eager_mode(graph_function): argument
63 wrapped = wrap_function.wrap_function(graph_function, [self])
68 graph_function(self)
/external/tensorflow/tensorflow/python/distribute/
Dmirrored_strategy_test.py1067 graph_function = distribution.experimental_local_results(
1073 del graph_function