Home
last modified time | relevance | path

Searched refs:make_callable (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/python/data/benchmarks/
Dmeta_benchmark.py54 self.run_benchmark_with_session_run(dataset, make_callable=True)
77 self.run_benchmark_with_session_run(dataset, make_callable=True)
113 def run_benchmark_with_session_run(self, dataset, make_callable=False): argument
120 if make_callable:
121 get_next_element = sess.make_callable(next_element)
/external/tensorflow/tensorflow/python/keras/distribute/
Dminimize_loss_test.py112 run_step = sess.make_callable(run_step())
150 run_step = sess.make_callable(run_step())
207 run_step = sess.make_callable(run_step())
275 run_step = sess.make_callable(run_step())
382 run_step = sess.make_callable(run_step())
507 run_step = sess.make_callable(run_step())
Dkeras_optimizer_v2_test.py83 train_fn = sess.make_callable(train_fn())
/external/tensorflow/tensorflow/core/protobuf/
Dreplay_log.proto29 MakeCallableRequest make_callable = 8; field
/external/tensorflow/tensorflow/python/client/
Dsession_benchmark.py115 runner = sess.make_callable(v)
168 runner = sess.make_callable(v.op)
Dsession_test.py233 tensor_runner = sess.make_callable(a)
236 op_runner = sess.make_callable(a.op)
258 list_runner = sess.make_callable([a, b, c, a.name, assign.op])
271 tuple_runner = sess.make_callable((a, b, c, a.name))
289 namedtuple_runner = sess.make_callable(ABC(a, b, c))
1464 feed_fetch_runner = sess.make_callable([out_t, feed_t], [feed_t])
1472 tensor_runner = sess.make_callable(a, accept_options=True)
1486 tensor_runner = sess.make_callable(b.op, accept_options=True)
1499 tensor_runner = sess.make_callable(
Dsession.py1196 def make_callable(self, fetches, feed_list=None, accept_options=False): member in BaseSession
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.-interactive-session.pbtxt36 name: "make_callable"
Dtensorflow.-session.pbtxt36 name: "make_callable"
/external/tensorflow/tensorflow/python/ops/
Dcontrol_flow_ops_benchmark.py82 cond_fn = sess.make_callable(cond_val, [x])
/external/tensorflow/tensorflow/python/debug/wrappers/
Dlocal_cli_wrapper_test.py368 tensor_runner = wrapped_sess.make_callable(v)
378 tensor_runner = wrapped_sess.make_callable(a)
393 op_runner = wrapped_sess.make_callable(inc_v.op)
406 tensor_runner = wrapped_sess.make_callable(a, feed_list=[ph1, ph2])
Dframework.py662 def make_callable(self, member in BaseDebugWrapperSession
666 runner = self._sess.make_callable(
/external/tensorflow/tensorflow/python/training/
Dqueue_runner_impl.py252 enqueue_callable = sess.make_callable(enqueue_op)
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dcontrol_flow_ops_test.py1853 run_fn = sess.make_callable(targets)
/external/tensorflow/
DRELEASE.md3768 * Fixed a bug that prevented tfdbg from working with `tf.Session.make_callable`.
3814 * Added `tf.Session.make_callable()`, which provides a lower overhead means of running a similar st…