MCPcopy Create free account
hub / github.com/PABannier/sam3.cpp / BenchResult

Class BenchResult

examples/benchmark.cpp:60–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58// ── Display result ──────────────────────────────────────────────────────────
59
60struct 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected