We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7651f82 commit aa01874Copy full SHA for aa01874
cargo-bench-split.py
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env python3
2
+
3
+import sys
4
5
+for line in open(sys.argv[1]):
6
+ if 'ns/iter' in line:
7
+ parts = [x for x in line.split() if x]
8
+ print(f"{parts[1]}:{parts[4].replace(',', '')}")
0 commit comments