Return ceil division of a by b
(a, b)
| 524 | |
| 525 | |
| 526 | def ceil_div(a, b): |
| 527 | """Return ceil division of a by b""" |
| 528 | return tvm.tirx.indexdiv(a + (b - 1), b) |
| 529 | |
| 530 | |
| 531 | def swap(arr, axis): |
no outgoing calls
no test coverage detected
searching dependent graphs…