Skip to main content

atinline: forcibly inline python functions to their call site

This is a Python hack to let you specify functions as “inline” in much the same way you’d do in C. You save the cost of a function call by inlining the code of the function right at the call site. Of course, being Python, the inlining is done at runtime.

WARNING: Don’t use this in any real code. Seriously. It’s just a fun hack.

Now then, suppose you have some code like this:

def calculate(x):
    return 3*x*x - 2*x + (1/x)

def aggregate(items):
    total = 0
    for item in items:
        total += calculate(item)
    return total

This code pays the overhead of a function call for every item in the collection. You can get substantial speedups by inlining the calculate function like so:

def aggregate(items):
    total = 0
    for x in items:
        total += 3*x*x - 2*x + (1/x)
    return total

But now you’re paying the costs in terms of code quality and re-use. To get the best of both worlds simply declare that the calculate function should be inlined:

from atinline import inline

@inline
def calculate(x):
    return 3*x*x - 2*x + (1/x)

def aggregate(items):
    total = 0
    for item in items:
        total += calculate(item)
    return total

Now the first time the aggregate() function runs, it will detect that the calculate() function should be inlined, make the necessary bytecode hacks to do so, then continue on its way. Any subsequent calls to aggregate() will avoid the overhead of many function calls.

Currently only plain calls of top-level functions are supported; things won’t work correctly if you try to inline methods, functions looked up in a dict, or other stuff like this. It also doesn’t work with keyword arguments. These limitations might go away in future.

The heavy-lifting of bytecode regeneration is done by the fantastic “byteplay” module, which is atinline’s only dependency.

Release files for atinline 0.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for atinline 0.1.1
File Size Uploaded
atinline-0.1.1.tar.gz 7.0 kB Details

Release files / atinline-0.1.1.tar.gz

Download URL atinline-0.1.1.tar.gz
Size 7.0 kB
Tags Source
SHA-256 checksum
How to use checksums
010e0d7af800fe60df415c073b78e791f8a5f5c51caa0050c787eb3c244a7f58
BLAKE2b-256 checksum
How to use checksums
2f1cecebff119675b6d08cd676e433d52e414c93e82db775fcf014d99aa5bec4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.1 This release

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page