Skip to content

Instantly share code, notes, and snippets.

@kolibril13
Last active February 13, 2025 07:38
Show Gist options
  • Save kolibril13/627e4397897bb63b326ec4ef76ea3273 to your computer and use it in GitHub Desktop.
Save kolibril13/627e4397897bb63b326ec4ef76ea3273 to your computer and use it in GitHub Desktop.
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "uvtrick",
# ]
# ///
from uvtrick import Env
def benchmark():
import time
import sys
version = sys.version_info
print(f"Running benchmark with Python {version.major}.{version.minor}")
total = 0
N = 200_000_000
start = time.time()
for i in range(N):
total = total+i
duration = time.time() - start
print(f"Adding {N} elements took {duration:.2f} seconds.\n")
print("Starting benchmark tests:")
Env(python="3.11").run(benchmark)
Env(python="3.12").run(benchmark)
Env(python="3.13").run(benchmark)
Env(python="3.14").run(benchmark)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment