Files
2026-07-13 12:25:07 +08:00

350 lines
12 KiB
Python

# ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
# ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
# ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
# ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
# ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
# ┃ Copyright (c) 2017, the Perspective Authors. ┃
# ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
# ┃ This file is part of the Perspective library, distributed under the terms ┃
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
import logging
import os
import sys
import signal
import subprocess
import venv
import tornado
from timeit import timeit
from perspective import (
Table,
PerspectiveManager,
PerspectiveTornadoHandler,
)
logging.basicConfig(level=logging.INFO)
ARROW_PATH = os.path.join(
os.path.dirname(__file__),
"..",
"..",
"..",
"..",
"tools",
"perspective-bench",
"dist",
"benchmark-python.arrow",
)
BASELINE = {
"name": [
"arrow",
"csv",
"one",
"one_1_pivot",
"one_2_pivot",
"to_arrow",
"to_arrow_r1",
"to_arrow_r1_c1",
"to_arrow_r2",
"to_arrow_r2_c2",
"to_columns",
"to_columns_r1",
"to_columns_r1_c1",
"to_columns_r2",
"to_columns_r2_c2",
"to_csv",
"to_csv_r1",
"to_csv_r1_c1",
"to_csv_r2",
"to_csv_r2_c2",
"to_records",
"to_records_r1",
"to_records_r1_c1",
"to_records_r2",
"to_records_r2_c2",
"two",
"two_1x1_pivot",
"two_2x2_pivot",
"zero",
],
"time": [
0.007100801400002865,
0.2905632236999963,
0.31363245369999504,
0.5827624402000027,
0.5723526209999988,
0.3929776023999921,
0.00021701669998037688,
0.005837792799991348,
0.0012358780999875308,
0.06712399980000328,
1.5685727534000022,
0.00040022939999744266,
0.007451989500009404,
0.0027319223000063174,
0.08117095989999826,
0.5763108057000068,
0.0003611342000112927,
0.008143171199992593,
0.0019054690000075425,
0.07623720379999668,
2.040859387900002,
0.00047493509999867455,
0.008475803500004986,
0.0036788466000075458,
0.09640174390000311,
1.1455542396000056,
1.9211396786000023,
1.9244194315999947,
0.10238117819999956,
],
}
class VirtualEnvHandler(object):
"""Creates and manages a virtualenv for benchmarking, which allows for
clean dependency management and benchmarking of multiple versions without
contaminating the system's `site-packages` folder."""
def __init__(self, virtualenv_path):
self._virtualenv_path = virtualenv_path
self._is_activated = False
def virtualenv_exists(self):
"""Returns whether the directory specified by `VIRTUALENV_PATH`
exists."""
return os.path.exists(self._virtualenv_path)
def activate_virtualenv(self):
"""Activates the virtualenv at `VIRTUALENV_PATH`."""
logging.info("Activating virtualenv at: `{}`".format(self._virtualenv_path))
self._is_activated = True
return ". {}/bin/activate".format(self._virtualenv_path)
def create_virtualenv(self):
"""Clears the folder and creates a new virtualenv at
`self._virtualenv_path`."""
if self.virtualenv_exists():
logging.ERROR("Virtualenv already exists at: `{0}`".format(self._virtualenv_path))
return
logging.info("Creating virtualenv at: `{}`".format(self._virtualenv_path))
venv.create(self._virtualenv_path, clear=True, with_pip=True)
def deactivate_virtualenv(self):
if self.virtualenv_exists() and self._is_activated:
subprocess.check_output("deactivate", shell=True)
logging.info("Virtualenv deactivated!")
self._is_activated = False
class BenchmarkTornadoHandler(tornado.web.RequestHandler):
"""Host the results of the benchmark suite over a websocket."""
def set_default_headers(self):
self.set_header("Access-Control-Allow-Origin", "*")
self.set_header("Access-Control-Allow-Headers", "x-requested-with")
self.set_header("Access-Control-Allow-Methods", "POST, GET, OPTIONS")
def get(self):
self.render("benchmark_hosted.html")
class Benchmark(object):
"""A single Benchmark function. Use as a wrapper for stateless lambdas
with no parameters.
Example:
>>> func = Benchmark(lambda: self._view.to_records(), meta={
"name": "to_records",
"group": "view"
})
"""
def __init__(self, func, meta={}):
"""A decorator for a benchmark function, which will attach each attribute
of the `meta` dictionary to the decorated function as well as provide
it with the `benchmark` attribute.
Args:
meta (dict) : a metadata dictionary, whose keys and values will
become attributes on the benchmark function. The metadata dictionary
should be consistent within each suite, i.e. there should be no
additional values in between different methods decorated with
`@benchmark`.
"""
self._func = func
self._meta = meta
self.benchmark = True
for k, v in self._meta.items():
marked_key = "__BENCH__{0}".format(k)
setattr(self, marked_key, v)
def __call__(self):
"""Call the lambda bound to the decorator. This call asserts that the
lambda has no parameters and no reference to a `self` object.
"""
self._func()
class Suite(object):
"""A benchmark suite stub that contains `register_benchmarks` and generic
before/after methods.
Inherit from this class and implement `register_benchmarks`, which should
set all benchmark methods as attributes on the class.
"""
def register_benchmarks(self):
"""Registers all callbacks with `Runner`.
This function must be implemented in all child classes of `Suite.`
"""
raise NotImplementedError("Must implement `register_benchmarks` to run benchmark suite.")
def before_all(self):
pass
def after_all(self):
pass
def before_each(self):
pass
def after_each(self):
pass
class Runner(object):
ITERATIONS = 10
def __init__(self, suite):
"""Initializes a benchmark runner for the `Suite`.
Args:
suite (Suite) : A class that inherits from `Suite`, with any number
of instance methods decorated with `@benchmark`.
"""
self._suite = suite
self._benchmarks = []
self._table = None
self._WROTE_RESULTS = False
self._HOSTING = False
self._suite.register_benchmarks()
class_attrs = self._suite.__class__.__dict__.items()
instance_attrs = self._suite.__dict__.items()
for k, v in class_attrs:
if hasattr(v, "benchmark") and getattr(v, "benchmark") is True:
logging.debug("Registering {0}".format(k))
self._benchmarks.append(v)
for k, v in instance_attrs:
if hasattr(v, "benchmark") and getattr(v, "benchmark") is True:
logging.debug("Registering {0}".format(k))
self._benchmarks.append(v)
# Write results on SIGINT
signal.signal(signal.SIGINT, self.sigint_handler)
def sigint_handler(self, signum, frame):
"""On SIGINT, host the results over a websocket."""
if not self._WROTE_RESULTS:
self.write_results()
if not self._HOSTING:
self.host_results()
else:
sys.exit(0)
def host_results(self):
"""Create a tornado application that hosts the results table over a
websocket."""
if self._table is None:
return
MANAGER = PerspectiveManager()
MANAGER.host_table("benchmark_results", self._table)
application = tornado.web.Application(
[
(r"/", BenchmarkTornadoHandler),
# create a websocket endpoint that the client Javascript can access
(
r"/websocket",
PerspectiveTornadoHandler,
{"manager": MANAGER, "check_origin": True},
),
]
)
self._HOSTING = True
application.listen(8888)
logging.warn("Displaying results at http://localhost:8888")
loop = tornado.ioloop.IOLoop.current()
loop.start()
def write_results(self):
if self._table is None:
return
logging.debug("Writing results to `benchmark-python.arrow`")
if not os.path.exists(os.path.dirname(ARROW_PATH)):
os.makedirs(os.path.dirname(ARROW_PATH))
with open(ARROW_PATH, "wb") as file:
arrow = self._table.view().to_arrow(compression=None)
file.write(arrow)
html_path = os.path.join(os.path.dirname(__file__), "benchmark-python.html")
out_path = os.path.join(os.path.dirname(ARROW_PATH), "benchmark-python.html")
with open(html_path, "r") as input:
with open(out_path, "w") as output:
output.write(input.read())
self._WROTE_RESULTS = True
def run_method(self, func, *args, **kwargs):
"""Wrap the benchmark `func` with timing code and run for n
`ITERATIONS`, returning a result row that can be fed into Perspective.
"""
overall_result = {k.replace("__BENCH__", ""): v for (k, v) in func.__dict__.items() if "__BENCH__" in k}
result = timeit(func, number=Runner.ITERATIONS) / Runner.ITERATIONS
overall_result["__TIME__"] = result
overall_result["baseline"] = BASELINE["time"][BASELINE["name"].index(overall_result["name"])]
return overall_result
def print_result(self, result):
logging.info(
"{:<9} {:<14} {:<7} {:>2.4f}s".format(
result["group"],
result["name"],
result["version"],
result["__TIME__"],
)
)
def run(self, version):
"""Runs each benchmark function from the suite for n `ITERATIONS`,
timing each function and writing the results to a `perspective.Table`.
"""
logging.info("Running benchmark suite...")
for benchmark in self._benchmarks:
result = self.run_method(benchmark)
result["version"] = version
self.print_result(result)
if self._table is None:
if os.path.exists(ARROW_PATH):
# if arrow exists, append to it
with open(ARROW_PATH, "rb") as arr:
print("Reading table from pre-existing benchmark-python.arrow")
self._table = Table(arr.read())
self._table.update([result])
else:
print("Creating new table")
self._table = Table([result])
else:
self._table.update([result])