Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
Dmath_utils.py202 def terminate_when_all_zero(current_argument, residual_powers, accumulator): argument
205 math_ops.greater(residual_powers, array_ops.ones_like(residual_powers)))
208 def do_iteration(current_argument, residual_powers, accumulator): argument
232 is_even = math_ops.equal(residual_powers % 2,
234 array_ops.shape(residual_powers),
240 do_update = math_ops.greater(residual_powers, 1)
241 new_residual_powers = residual_powers - residual_powers % 2
248 residual_powers = array_ops.where(do_update, new_residual_powers,
249 residual_powers)
250 return (current_argument, residual_powers, accumulator)