(a, decimals=0)
| 1631 | @implements(np.round) |
| 1632 | @derived_from(np) |
| 1633 | def round(a, decimals=0): |
| 1634 | return a.map_blocks(np.round, decimals=decimals, dtype=a.dtype) |
| 1635 | |
| 1636 | |
| 1637 | @implements(np.ndim) |
no test coverage detected
searching dependent graphs…