HomeSort by relevance Sort by last modified time
    Searched defs:should_stop (Results 1 - 10 of 10) sorted by null

  /external/tensorflow/tensorflow/python/training/
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...]
monitored_session.py 557 unless a stop is requested. In that case, the next `should_stop` call
575 while not session.should_stop():
637 """Exit the training loop by causing `should_stop()` to return `True`.
646 def should_stop(self): member in class:_MonitoredSession
647 return self._sess is None or self._sess.should_stop()
726 while not sess.should_stop():
822 while not sess.should_stop():
918 def should_stop(self): member in class:_WrappedSession
    [all...]
supervisor.py 64 while not sv.should_stop():
76 After an exception is raised, `should_stop()` returns `True`. In that case
78 check for `sv.should_stop()`.
81 `tf.errors.OutOfRangeError`, also cause `sv.should_stop()` to return `True`
110 while not sv.should_stop():
162 while not sv.should_stop():
183 if sv.should_stop():
850 def should_stop(self): member in class:Supervisor
    [all...]
  /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;
pooling_ops_3d_sycl.h 445 bool should_stop = false; local
448 for (int p = pstart; p < pend && !should_stop; ++p) {
449 for (int r = rstart; r < rend && !should_stop; ++r) {
450 for (int c = cstart; c < cend && !should_stop; ++c) {
454 should_stop = true;
    [all...]
  /external/tensorflow/tensorflow/python/debug/wrappers/
framework.py 743 def should_stop(self): member in class:BaseDebugWrapperSession
744 if hasattr(self._sess, "should_stop"):
745 return self._sess.should_stop()
748 "The wrapped session %r does not have a method called 'should_stop'. "
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu_estimator.py 603 if _StopSignals.should_stop(scalar_stopping_signal):
2346 def should_stop(scalar_stopping_signal): member in class:_StopSignals
    [all...]
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 236 sig_atomic_t should_stop = 0; variable
285 should_stop = 1;
405 while (((loopcntr <= loops) || (loops == 0)) && !should_stop) {
513 while (wait(&stat) > 0 && !should_stop) {
516 if (should_stop) {
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 263 sig_atomic_t should_stop = 0; variable
312 should_stop = 1;
432 while (((loopcntr <= loops) || (loops == 0)) && !should_stop) {
540 while (wait(&stat) > 0 && !should_stop) {
543 if (should_stop) {
    [all...]

Completed in 492 milliseconds