MCPcopy Index your code
hub / github.com/dask/dask / frexp

Function frexp

dask/array/_array_expr/_ufunc.py:324–329  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

322
323@derived_from(np)
324def 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)

Callers

nothing calls this directly

Calls 3

elemwiseFunction · 0.90
new_collectionFunction · 0.90
DoubleOutputsClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…