You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
matrix, appends `benchmarks/demo_benchmark_history.json`, and refreshes
19
19
this file with the latest snapshot.
20
20
21
+
## Profile meanings
22
+
23
+
| Profile | Meaning |
24
+
| --- | --- |
25
+
| Standard timer, default sink | Baseline ScopeTimer cost with the normal synchronous sink and wall-clock timestamps enabled. |
26
+
| Standard timer, wall time disabled | Standard timer with `SCOPE_TIMER_WALLTIME=0` so the report shows the cost of dropping `start=` and `end=` timestamp formatting. |
27
+
| Standard timer, buffered sink | Single-thread run with the thread-buffered sink enabled to show how much caller-thread write overhead falls when flushes are batched. |
28
+
| Standard timer, buffered sink (threaded stress) | Multi-threaded buffered run that stresses contention and cross-thread flush behavior under the standard timer format. |
29
+
| Standard timer, async sink | Multi-threaded run with the async sink so flush work moves to the background writer instead of the calling thread. |
30
+
| Hot-path timer, async sink | Lowest-overhead profile: hot-path timer format plus the async sink, measured under the threaded stress workload. |
0 commit comments