Home | History | Annotate | Download | only in client

Lines Matching refs:partial_run

62   def partial_run(self, handle, fetches, feed_dict=None):
64 raise NotImplementedError('partial_run')
916 def partial_run(self, handle, fetches, feed_dict=None):
922 then a sequence of `partial_run()`. `partial_run_setup` specifies the
924 `partial_run` calls.
939 res = sess.partial_run(h, r1, feed_dict={a: 1, b: 2})
940 res = sess.partial_run(h, r2, feed_dict={c: res})
969 The tensors will be supplied by the subsequent `partial_run` calls.
1052 """Perform either run or partial_run, depending the presence of `handle`."""
1302 handle: a handle for partial_run. None if this is just a call to run().
1344 raise RuntimeError('partial_run() requires empty target_list.')