rename ops

This commit is contained in:
2026-03-09 18:37:36 +08:00
parent 563f480643
commit 82a845429b
10 changed files with 136 additions and 225 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ def main() -> int:
"workload_id",
"threads",
"durability_mode",
"ops_per_sec",
"ops",
"p99_us",
}
missing = needed - set(df.columns)
@@ -39,8 +39,8 @@ def main() -> int:
base = (
sub.groupby(["engine", "workload_id", "threads", "durability_mode"])
.agg(
repeats=("ops_per_sec", "count"),
throughput_median=("ops_per_sec", "median"),
repeats=("ops", "count"),
throughput_median=("ops", "median"),
p99_median=("p99_us", "median"),
)
.reset_index()