Baseline data structure
| 35 | |
| 36 | // Baseline data structure |
| 37 | struct BaselineData |
| 38 | { |
| 39 | double accuracy_error_percent; |
| 40 | double accuracy_error_ms_per_event; |
| 41 | double overhead_percent; |
| 42 | double overhead_ms; |
| 43 | double overhead_ns_per_event; |
| 44 | double memory_bytes_per_event; |
| 45 | double calculation_time_ms; |
| 46 | double peak_calc_memory_mb; |
| 47 | size_t total_events; |
| 48 | size_t thread_count; |
| 49 | std::string timestamp; |
| 50 | std::string platform; |
| 51 | }; |
| 52 | |
| 53 | // Global config |
| 54 | BenchmarkConfig g_config; |
nothing calls this directly
no outgoing calls
no test coverage detected