/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
improve monitor
Jeremy Magland <jmagland@flatironinstitute.org> committed commit 8469e9f0e0ff parent 3eab2d5 Browse files
1 changed file+14−0
benchcompress/src/benchcompress/run_benchmarks.pymodified+14−0View file
@@ -466,4 +466,18 @@ def run_benchmarks(
466466 info["source_file"] = GITHUB_DATASETS_PREFIX + dataset["source_file"]
467467 dataset_info.append(info)
468468
469+ # Upload final benchmark status
470+ if memobin_api_key and upload_enabled:
471+ try:
472+ upload_benchmark_status(
473+ memobin_api_key,
474+ "All datasets",
475+ "All algorithms",
476+ results,
477+ total_benchmarks,
478+ start_time,
479+ )
480+ except Exception as e:
481+ print(f" Warning: Failed to upload final status to memobin: {str(e)}")
482+
469483 return {"results": results, "algorithms": algorithm_info, "datasets": dataset_info}
moveopenescclose