HomeSort by relevance Sort by last modified time
    Searched refs:should_stop (Results 1 - 25 of 47) sorted by null

1 2

  /external/libmojo/mojo/public/cpp/bindings/
interface_endpoint_controller.h 28 // - returns true when |should_stop| is set to true;
32 virtual bool SyncWatch(const bool* should_stop) = 0;
sync_handle_watcher.h 46 // - returns true when |should_stop| is set to true;
49 bool SyncWatch(const bool* should_stop);
sync_handle_registry.h 39 // - returns true when any element of |should_stop| is set to true;
41 bool WatchAllHandles(const bool* should_stop[], size_t count);
connector.h 138 // - returns true when |should_stop| is set to true;
141 bool SyncWatch(const bool* should_stop);
  /external/tensorflow/tensorflow/core/kernels/
pooling_ops_3d_gpu.cu.cc 54 bool should_stop = false; local
59 for (int p = pstart; p < pend && !should_stop; ++p) {
60 for (int h = hstart; h < hend && !should_stop; ++h) {
61 for (int w = wstart; w < wend && !should_stop; ++w) {
65 should_stop = true;
105 bool should_stop = false; local
110 for (int p = pstart; p < pend && !should_stop; ++p) {
111 for (int h = hstart; h < hend && !should_stop; ++h) {
112 for (int w = wstart; w < wend && !should_stop; ++w) {
116 should_stop = true
    [all...]
maxpooling_op_gpu.cu.cc 281 bool should_stop = false; local
285 for (int h = hstart; h < hend && !should_stop; ++h) {
286 for (int w = wstart; w < wend && !should_stop; ++w) {
290 should_stop = true;
322 bool should_stop = false; local
326 for (int h = hstart; h < hend && !should_stop; ++h) {
327 for (int w = wstart; w < wend && !should_stop; ++w) {
331 should_stop = true;
  /external/tensorflow/tensorflow/contrib/model_pruning/python/
learning.py 100 default, two `Boolean`, scalar ops called "should_stop" and "should_log"
157 total_loss, should_stop = train_step_fn(sess, train_op, global_step,
160 return total_loss, should_stop
  /external/libmojo/mojo/public/cpp/bindings/lib/
sync_handle_watcher.cc 36 bool SyncHandleWatcher::SyncWatch(const bool* should_stop) {
47 const bool* should_stop_array[] = {should_stop, &destroyed->data};
sync_handle_registry.cc 60 bool SyncHandleRegistry::WatchAllHandles(const bool* should_stop[],
72 if (*should_stop[i])
connector.cc 172 bool Connector::SyncWatch(const bool* should_stop) {
181 return sync_watcher_->SyncWatch(should_stop);
  /external/tensorflow/tensorflow/python/training/
basic_loops.py 56 while not supervisor.should_stop():
monitored_session_test.py 240 self.should_stop = False
260 if self.should_stop:
374 self.assertFalse(wrapped_sess.should_stop())
376 self.assertTrue(wrapped_sess.should_stop())
381 self.assertFalse(wrapped_sess.should_stop())
382 self.assertFalse(wrapped_sess.should_stop())
383 self.assertFalse(wrapped_sess.should_stop())
384 self.assertTrue(wrapped_sess.should_stop())
390 self.assertFalse(wrapped_sess1.should_stop())
391 self.assertFalse(wrapped_sess1.should_stop())
    [all...]
coordinator_test.py 76 self.assertFalse(coord.should_stop())
79 self.assertTrue(coord.should_stop())
84 self.assertFalse(coord.should_stop())
91 self.assertFalse(coord.should_stop())
96 self.assertTrue(coord.should_stop())
supervisor_test.py 115 self.assertTrue(sv.should_stop())
132 self.assertTrue(sv.should_stop())
150 self.assertTrue(sv.should_stop())
280 while not sv.should_stop():
300 while not sv.should_stop():
321 if sv.should_stop():
    [all...]
coordinator.py 54 `coord.should_stop()` on a regular basis. `coord.should_stop()` returns
60 while not coord.should_stop():
74 while not coord.should_stop():
102 while not coord.should_stop():
190 After this is called, calls to `should_stop()` will return `True`.
249 After this is called, calls to `should_stop()` will return `False`.
257 def should_stop(self): member in class:Coordinator
306 should_stop() to become True.
488 while not self._coord.should_stop()
    [all...]
basic_session_run_hooks_test.py 148 self.assertFalse(mon_sess.should_stop())
151 self.assertFalse(mon_sess.should_stop())
154 self.assertTrue(mon_sess.should_stop())
158 self.assertTrue(mon_sess.should_stop())
172 self.assertFalse(mon_sess.should_stop())
175 self.assertFalse(mon_sess.should_stop())
178 self.assertFalse(mon_sess.should_stop())
181 self.assertTrue(mon_sess.should_stop())
185 self.assertTrue(mon_sess.should_stop())
199 self.assertFalse(mon_sess.should_stop())
    [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/
learning.py 514 # should_stop check to be run in the same session.run call:
520 if 'should_stop' in train_step_kwargs:
521 should_stop = sess.run(train_step_kwargs['should_stop'])
523 should_stop = False
525 return total_loss, should_stop
571 default, two `Boolean`, scalar ops called "should_stop" and "should_log"
712 train_step_kwargs['should_stop'] = should_stop_op
767 while not sv.should_stop():
768 total_loss, should_stop = train_step_fn
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
graph_actions.py 115 should_stop = False
118 should_stop = should_stop or induce_stop
119 return outputs, should_stop
329 outputs, should_stop = _run_with_monitors(
341 if should_stop:
  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_eval.py 84 while step < num_iter and not coord.should_stop():
cifar10_train.py 121 while not mon_sess.should_stop():
  /external/tensorflow/tensorflow/examples/how_tos/reading_data/
fully_connected_preloaded.py 103 while not coord.should_stop():
fully_connected_preloaded_var.py 114 while not coord.should_stop():
  /external/tensorflow/tensorflow/python/estimator/inputs/queues/
feeding_queue_runner.py 90 if coord and coord.should_stop():
  /external/tensorflow/tensorflow/contrib/kfac/examples/
convnet.py 211 while not sess.should_stop():
304 while not sess.should_stop():
mlp.py 135 while not sess.should_stop():

Completed in 632 milliseconds

1 2