(x)
| 322 | |
| 323 | @derived_from(np) |
| 324 | def frexp(x): |
| 325 | # Not actually object dtype, just need to specify something |
| 326 | tmp = elemwise(np.frexp, x, dtype=object) |
| 327 | left = DoubleOutputs(tmp, 0, getattr(x, "_meta", x), "mantissa-", np.frexp) |
| 328 | right = DoubleOutputs(tmp, 1, getattr(x, "_meta", x), "exponent-", np.frexp) |
| 329 | return new_collection(left), new_collection(right) |
| 330 | |
| 331 | |
| 332 | @derived_from(np) |
nothing calls this directly
no test coverage detected
searching dependent graphs…