Skip to main content

breaking-point.py helps to find a size of input data where one function starts outperform another function. It is a convenient way to compare different algorithms for a single task.

Project description

breaking-point.py helps to find a size of input data where one function starts outperform another function. It is a convenient way to compare different algorithms for a single task.

INSTALLATION

pip install breaking-point

USAGE

from breaking_point import find_breaking_point

find_breaking_point(f1, f2, input_generator, start=1, step=1, limit=1000000, trial_count=1000, repeat_count=3)

there

  • f1, f2 - functions to compare.

  • inpurt_generator - function that takes n argument (size of input on current iteration) and returns input data for f1 and f2. Return value should be a tuple with first element - list of non-keyworded arguments and second element - dict of keyword arguments.

  • start - initial input data size.

  • step - step of iteration.

  • limit - maximum amount of input data. If breaking point was not found until limit was reached - iteration stops.

  • trial_count - number of executions with each input data size.

  • repeat_count - repeat trial several times and use average performance result.

Function returns n0 - size of input data for which f2(n0) executed faster than f1(n0) or None if reaches limit.

EXAMPLE

See example.py.

LICENSE

MIT

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

breaking-point-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

breaking_point-0.1.0-py2.py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 2 Python 3

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