(nthread_tx, nthread_bx, nthread_by)
| 30 | |
| 31 | |
| 32 | def _get_threads(nthread_tx, nthread_bx, nthread_by): |
| 33 | tx = te.thread_axis("threadIdx.x") |
| 34 | bx = te.thread_axis("blockIdx.x") |
| 35 | by = te.thread_axis("blockIdx.y") |
| 36 | return tx, bx, by, nthread_tx, nthread_bx, nthread_by |
| 37 | |
| 38 | |
| 39 | def _sort_init(shape, axis, keys_in, keys_out, values_out=None, value_init_func=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…