From 2b9413042dff566b75858e7d43b02d9a9f368ada Mon Sep 17 00:00:00 2001 From: Eamon Date: Sat, 16 May 2026 18:20:44 +0530 Subject: [PATCH] feat: entry point for Python benchmark (#41) suite Introduces a standard entry point script that invokes the core python_benchmark module execution flow. --- benchmark/benchmark_training.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 benchmark/benchmark_training.py diff --git a/benchmark/benchmark_training.py b/benchmark/benchmark_training.py new file mode 100644 index 0000000..07ec369 --- /dev/null +++ b/benchmark/benchmark_training.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python3 +"""Compatibility entry point for the real Python benchmark suite.""" + +from python_benchmark import main + + +if __name__ == "__main__": + raise SystemExit(main())