Home | History | Annotate | Download | only in tests

Lines Matching refs:reverse

43 def handle_options(func, x, axis, exclusive, reverse):
49 if reverse:
67 if reverse:
79 def _compare(self, x, axis, exclusive, reverse):
80 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
83 tf_out = math_ops.cumsum(p, axis, exclusive, reverse).eval(
90 for reverse in [True, False]:
91 self._compare(x, axis, exclusive, reverse)
157 def _compare(self, x, axis, exclusive, reverse):
158 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse)
161 prod = math_ops.cumprod(p, axis, exclusive, reverse)
168 for reverse in [True, False]:
169 self._compare(x, axis, exclusive, reverse)