Add RTMLib CUDA backends and staged timing

This commit is contained in:
Codex
2026-08-15 10:58:02 -07:00
parent dba60667cb
commit 174ba875dd
8 changed files with 243 additions and 61 deletions
@@ -32,7 +32,7 @@ def test_fixed_keypoint_counts_and_nonfinite_cleanup():
def test_latest_queue_overwrites_old():
q = LatestQueue(); q.put(1); q.put(2)
assert q.qsize() == 1 and q.get() == 2
assert q.qsize() == 1 and q.get() == (2, 1)
def test_empty_people_contract():