(self, x, axis, exclusive, reverse)
| 202 | ] |
| 203 | |
| 204 | def _compare(self, x, axis, exclusive, reverse): |
| 205 | np_out = handle_options(np.cumprod, x, axis, exclusive, reverse) |
| 206 | with self.cached_session(use_gpu=True): |
| 207 | tf_out = math_ops.cumprod(x, axis, exclusive, reverse).eval() |
| 208 | |
| 209 | self.assertAllClose(np_out, tf_out) |
| 210 | |
| 211 | def _compareAll(self, x, axis): |
| 212 | for exclusive in [True, False]: |
no test coverage detected