MCPcopy Create free account
hub / github.com/dask/dask / frompyfunc

Function frompyfunc

dask/array/_array_expr/_ufunc.py:70–73  ·  view source on GitHub ↗
(func, nin, nout)

Source from the content-addressed store, hash-verified

68
69@derived_from(np)
70def frompyfunc(func, nin, nout):
71 if nout > 1:
72 raise NotImplementedError("frompyfunc with more than one output")
73 return ufunc(da_frompyfunc(func, nin, nout))
74
75
76class ufunc:

Callers

nothing calls this directly

Calls 2

ufuncClass · 0.70
da_frompyfuncClass · 0.70

Tested by

no test coverage detected