| 58 | // ── Display result ────────────────────────────────────────────────────────── |
| 59 | |
| 60 | struct BenchResult { |
| 61 | std::string model_name; |
| 62 | std::string backend; |
| 63 | int64_t file_size = 0; |
| 64 | double t_load_ms = 0.0; |
| 65 | double t_frame0_ms = 0.0; |
| 66 | double t_track_avg_ms = 0.0; |
| 67 | double t_total_ms = 0.0; |
| 68 | int n_detections = 0; |
| 69 | bool success = false; |
| 70 | std::string error; |
| 71 | }; |
| 72 | |
| 73 | // ── Helpers ────────────────────────────────────────────────────────────────── |
| 74 |
nothing calls this directly
no outgoing calls
no test coverage detected