Optimize post-processing #128

Closed
opened 2024-03-08 17:52:32 +00:00 by jgeorgi · 1 comment
Owner

Post-processing is where the biggest hits in detection time are, especially for the larger models (e.g., yolov8m based). There must be some places where that can be optimized better.

Post-processing is where the biggest hits in detection time are, especially for the larger models (e.g., yolov8m based). There must be some places where that can be optimized better.
jgeorgi added the
enhancement
label 2024-03-08 17:52:32 +00:00
Author
Owner

The slow step is the transfer of the data from the gpu. Method doesn't matter, but arraySync I think leads to slightly more efficient processing after the fact. But, there's just not much that can be done with that transfer time. I assume that's machine dependent. Right now I'm getting fairly consistently sub 1s total times with the small sized model.

The slow step is the transfer of the data from the gpu. Method doesn't matter, but `arraySync` I think leads to slightly more efficient processing after the fact. But, there's just not much that can be done with that transfer time. I assume that's machine dependent. Right now I'm getting fairly consistently sub 1s total times with the small sized model.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: ALVINN/ALVINN_f7#128
No description provided.