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

Function divmod

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

Source from the content-addressed store, hash-verified

344
345@derived_from(np)
346def divmod(x, y):
347 res1 = x // y
348 res2 = x % y
349 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…