HomeSort by relevance Sort by last modified time
    Searched refs:new_global_step (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
conditional_accumulator_base.cc 37 Status ConditionalAccumulatorBase::SetGlobalStep(int64 new_global_step) {
39 if (new_global_step < current_global_step_) {
42 << " >= " << new_global_step << " = new_global_step."; local
44 current_global_step_ = new_global_step;
conditional_accumulator_base.h 74 // It returns an InvalidArgument error if the new_global_step is less than
76 Status SetGlobalStep(int64 new_global_step);
  /external/tensorflow/tensorflow/python/kernel_tests/
conditional_accumulator_test.py 313 new_global_step = math_ops.add(global_step, 1)
314 inc_global_step = state_ops.assign(global_step, new_global_step)
316 set_global_step_op = q.set_global_step(new_global_step)
  /external/tensorflow/tensorflow/python/ops/
data_flow_ops.py     [all...]

Completed in 81 milliseconds