Skip to main content

Estimate Asymptotic Runtime Complexity from Bytecode executions

Project description

Python Performance Analysis Library or py-pal is a bytecode profiling toolkit.

Installation

This project requires CPython to run. Install Python >= 3.7, then install py-pal by running:

pip install py-pal

Documentation

TBA

Overview

Calling py-pal as module with

python -m py_pal file.py

or

pypal file.py

Measure specific functions using the decorator:

from py_pal.core import profile

@profile
def test():
    pass

Using the context manager:

from py_pal.estimator import AllArgumentEstimator
from py_pal.tracer import Tracer

with Tracer() as t:
    pass

estimator = AllArgumentEstimator(t)
res = estimator.export()

# Do something with the resulting DataFrame
print(res)

Using the API:

from py_pal.estimator import AllArgumentEstimator
from py_pal.tracer import Tracer


t = Tracer()
t.trace()

# Your function
pass

t.stop()
estimator = AllArgumentEstimator(t)
res = estimator.export()

# Do something with the resulting DataFrame
print(res)

Modes

Profiling and Performance Testing

Restrictions

The Tracing process does not work for multi-threaded code.

Tracing processes

Development

To run the all tests run:

pip install -r dev-requirements.txt

pytest tests tests_cython

FAQ

Why not use a standard profiler?

Using absolute timing data vs synthetic timing data using opcodes.

What’s New in Py-PAL 0.2.1

Refactoring

The estimator module was refactored which introduces a slight change to the API. Classes inheriting from Estimator now only specify how to transform the collected data with respect to the arguments of the function.

Instead of ComplexityEstimator you should use the AllArgumentEstimator class. Additionally there is the SeparateArgumentEstimator which is experimental.

What’s New in Py-PAL 0.1.6

More accurate Data Collection

The Tracer is enhanced by measuring builtin function calls with AdvancedOpcodeMetric.

Opcodes resembling a function call .e.g FUNCTION_CALL are filtered for built in function calls. If the called function is found in the complexity mapping a synthetic Opcode weight gets assigned. A builtin function call is evaluated using its argument and a pre-defined runtime complexity e.g. O(n log n) for sort().

  • The feature is enabled by default

  • The calculation produces a performance overhead and can be disabled by providing a OpcodeMetric instance to the Tracer

  • The AdvancedOpcodeMetric instance assigned to the Tracer provides statistics about how many builtin function calls were observed and how many were found in the complexity map

Bugfixes

  • Cleaning data after normalization introduced wrong data points

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-pal-0.2.2.tar.gz (164.0 kB view hashes)

Uploaded Source

Built Distributions

py_pal-0.2.2-cp38-cp38-win_amd64.whl (264.0 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

py_pal-0.2.2-cp38-cp38-win32.whl (249.1 kB view hashes)

Uploaded CPython 3.8 Windows x86

py_pal-0.2.2-cp38-cp38-manylinux2010_x86_64.whl (703.3 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

py_pal-0.2.2-cp38-cp38-manylinux1_x86_64.whl (703.3 kB view hashes)

Uploaded CPython 3.8

py_pal-0.2.2-cp37-cp37m-win_amd64.whl (261.7 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

py_pal-0.2.2-cp37-cp37m-win32.whl (247.4 kB view hashes)

Uploaded CPython 3.7m Windows x86

py_pal-0.2.2-cp37-cp37m-manylinux2010_x86_64.whl (629.9 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

py_pal-0.2.2-cp37-cp37m-manylinux1_x86_64.whl (629.9 kB view hashes)

Uploaded CPython 3.7m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page