A framework for benchmarking in python
Project description
benchwork
A framework for benchmarking in python
Installation
pip install -U benchwork
Usage
from benchwork import (
BenchAPI,
BenchCaseSpeed,
BenchSuite,
BenchSetSpeed,
BenchSetVersion,
run_suite,
)
class BenchAPIPackage1(BenchAPI):
name = "package1"
version = "0.0.1"
class BenchAPIPackage2(BenchAPI):
name = "package2"
version = "0.0.2"
class BenchCaseSpeed(BenchCaseSpeed):
timeit_number = 10
def run_core(self):
import time
time.sleep(.1)
class BenchSetSpeed(BenchSetSpeed):
case = BenchCaseSpeed
class BenchSuite(BenchSuite):
"""Benchmarking suite"""
set_classes = [BenchSetVersion, BenchSetSpeed]
if __name__ == "__main__":
run_suite(BenchSuite, None, "Benchmarking")
Output:
# Benchmarking
Benchmarking suite
## Versions
Show versions of testing packages
| |Version|
|-|-----------------------|
|package1|0.0.1|
|package2|0.0.2|
## Running speed
| |Speed|
|-|-----------------------|
|package1|1.003228693996789|
|package2|1.0028911930057802|
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
benchwork-0.0.2.tar.gz
(3.6 kB
view hashes)
Built Distribution
Close
Hashes for benchwork-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108ca9bd7aef958ff0b5af1e41d654d95296629ffcffb2b49a9ba1a9347f1fb2 |
|
MD5 | 9989441236b493611b350905479f8afd |
|
BLAKE2b-256 | fa182aa185ae0f1be1af719a98836a6f5082fbcd92b27b152615b37b057dc33b |