(profile: str)
| 154 | |
| 155 | |
| 156 | def binary_size(profile: str) -> int: |
| 157 | binary_dir = PROFILE_TARGET_DIR[profile] |
| 158 | binary_path = REPO_ROOT / "target" / binary_dir / BENCHMARK_BINARY |
| 159 | return binary_path.stat().st_size |
| 160 | |
| 161 | |
| 162 | def human_time(seconds: float) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…