Added time pseudo-profiler

capellan-batch-lettering-inmem
CapellanCitizen 2025-03-22 13:35:12 -04:00
rodzic ee14e4e28a
commit 40536de8a6
2 zmienionych plików z 32 dodań i 0 usunięć

Wyświetl plik

@ -45,6 +45,7 @@
# profiler_type = "cprofile"
# profiler_type = "profile"
# profiler_type = "pyinstrument"
# profiler_type = "time"
# profiler_type = "monkeytype"
### enable profiler, see cmd line arg -p, default: false

Wyświetl plik

@ -221,6 +221,8 @@ def profile(profiler_type, profile_dir: Path, ini: dict, extension, remaining_ar
with_profile(extension, remaining_args, profile_file_path)
elif profiler_type == 'pyinstrument':
with_pyinstrument(extension, remaining_args, profile_file_path)
elif profiler_type == 'time':
with_time(extension, remaining_args, profile_file_path)
elif profiler_type == 'monkeytype':
with_monkeytype(extension, remaining_args, profile_file_path)
else:
@ -284,6 +286,35 @@ def with_pyinstrument(extension, remaining_args, profile_file_path: Path):
print(f"Profiler: pyinstrument, stats written to '{profile_file_path.name}'. Use browser to see it.", file=sys.stderr)
def with_time(extension, remaining_args, profile_file_path: Path):
'''
'Profile' by logging elapsed wall and CPU time, and max Resident Set Size if available.
'''
import time
with open(profile_file_path, "w") as stats_file:
def log(msg: str):
stats_file.write(msg + "\n")
print(msg, file=sys.stderr)
start_wall = time.perf_counter()
start_proc = time.process_time()
try:
extension.run(args=remaining_args)
finally:
duration_wall = time.perf_counter() - start_wall
duration_proc = time.process_time() - start_proc
log(f"Profiler: wall {duration_wall}s, proc {duration_proc}s")
try:
import resource
usage = resource.getrusage(resource.RUSAGE_SELF)
log(f"Max RSS: {usage.ru_maxrss}KB")
except: # Resource isn't supported on all platforms
pass
def with_monkeytype(extension, remaining_args, profile_file_path: Path) -> None:
'''
'profile' with monkeytype to get type information. This may be handy for anyone who wants to