(self)
| 184 | math_ops.cumprod(x, axis).eval(feed_dict={p: x}) |
| 185 | |
| 186 | def test1D(self): |
| 187 | for dtype in self.valid_dtypes: |
| 188 | x = np.arange(1, 6).reshape([5]).astype(dtype) |
| 189 | for axis in (-1, 0): |
| 190 | self._compareAll(x, axis) |
| 191 | |
| 192 | def test2D(self): |
| 193 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected