(self, x, axis, exclusive, reverse)
| 78 | ] |
| 79 | |
| 80 | def _compare(self, x, axis, exclusive, reverse): |
| 81 | np_out = handle_options(np.cumsum, x, axis, exclusive, reverse) |
| 82 | with self.cached_session(use_gpu=True): |
| 83 | tf_out = math_ops.cumsum(x, axis, exclusive, reverse).eval() |
| 84 | |
| 85 | self.assertAllClose(np_out, tf_out) |
| 86 | |
| 87 | def _compareAll(self, x, axis): |
| 88 | for exclusive in [True, False]: |
no test coverage detected