MCPcopy Create free account
hub / github.com/Compaile/ctrack / BaselineData

Class BaselineData

benchmark/ctrack_benchmark.cpp:37–51  ·  view source on GitHub ↗

Baseline data structure

Source from the content-addressed store, hash-verified

35
36// Baseline data structure
37struct 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
54BenchmarkConfig g_config;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected