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

Function divmod

dask/array/ufunc.py:347–350  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

345
346@derived_from(np)
347def divmod(x, y):
348 res1 = x // y
349 res2 = x % y
350 return res1, res2

Callers 12

__divmod__Method · 0.90
__rdivmod__Method · 0.90
_split_up_single_chunkFunction · 0.90
_vindex_arrayFunction · 0.90
parse_assignment_indicesFunction · 0.70
setitem_arrayFunction · 0.70
repartition_npartitionsFunction · 0.50
_nsplitsMethod · 0.50
test_divmodFunction · 0.50
test_divmodFunction · 0.50
format_timeFunction · 0.50

Calls

no outgoing calls

Tested by 2

test_divmodFunction · 0.40
test_divmodFunction · 0.40