Skip to main content

Notations

Project description

Notations

Statically estimate asymptotic notation for a given Python function by looking at the level of loop-nesting inside the function.

this is an early prototype

Example

from notations import notation

def my_example_function(arg1, arg2):
    f = 0
    for a in arg1:
        for i in a:
            f+=1
    for b in arg2:
        for j in b:
            f+=1

print(notation(my_example_function))

Will print Θ(n^2)

See test_notations.py for more examples.

TODO

This is a rough sketch of a concept at this stage.

  • while operators
  • Look at the relationship between input arguments in a function, just because a loop is nested, doesn't mean the O(n_n) is correct
  • branches inside loops
  • test comprehensions

FAQ

  • Why not use the AST? The AST cannot be built at runtime (easily) from a code object, this library is intended to be used to evaluate the execution-order of a compiled function.
  • How could you possibly calculate the order without running the code? This function equates the order by looking at the level of loop-nesting in a function, the use of comprehensions and the relationships between arguments. Dynamic runtime benchmarks are susceptible to environmental conditions (noisy neighbours) and there are already plenty of tools out there that do this

Research notes

Changes

0.2.0

  • Change to theta values for repr

0.1.0

  • Initial prototype supporting basic for loops

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

notations-0.2.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

notations-0.2.0-py2.py3-none-any.whl (13.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file notations-0.2.0.tar.gz.

File metadata

  • Download URL: notations-0.2.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.21.0

File hashes

Hashes for notations-0.2.0.tar.gz
Algorithm Hash digest
SHA256 06177c0988ea986a3c7763692ff41b3262e0ba47528ad88898927a01efd1d522
MD5 0e718b3bd010231f68d62d4cbad4d7fd
BLAKE2b-256 4dccf169ddf9b47f3b3b49c7ac2b33301de6d1484d74be701ab928814d8ccf93

See more details on using hashes here.

File details

Details for the file notations-0.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: notations-0.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.21.0

File hashes

Hashes for notations-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c8a77e6974cfad5e7112da3e474df2255048fdb930021070486bcbffd8a85386
MD5 973fc2b05a64ca4bc504fb8afbd335de
BLAKE2b-256 f08df9f88c72ff6e26225fa78068d5933555b49f969faa48857c9dc52aac9d55

See more details on using hashes here.

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