Library for function preprocessing and optimization
Project description
CodeCutter
CodeCutter is a Python library designed to preprocess Python functions and methods by performing compile-time optimizations. Inspired by the behavior of the C preprocessor, CodeCutter enhances execution performance by simplifying code logic before it runs, focusing on optimizing variables and control flow statements.
Features
- Replace variables with constants or expressions: Automatically replaces variables with constant values or constant expressions when detected. This allows for faster execution as it reduces the need for variable lookups during runtime.
- Simplify boolean if-clauses with constants: If a boolean expression contains constants, CodeCutter simplifies the expression by evaluating it during preprocessing. This can eliminate unnecessary branches in your code.
- Remove dead if-clauses: If certain conditions in if statements are known to always evaluate to True or False, CodeCutter removes or short-circuits these branches. This only includes unreachable code due to constants, not always-true conditions.
Why CodeCutter?
Unlike regex-based or hacky import-time solutions, CodeCutter operates in a clean and structured way, leveraging Python’s internal structures to perform safe and reliable transformations. The library is built with extensibility in mind, allowing you to easily add custom preprocessing logic to match your specific optimization needs.
Documentation
Installation
You can install CodeCutter using pip:
pip3 install codecutter
Examples
Here's an example of how CodeCutter can improve your function before runtime.
Original bad function
def bad_function(
iterations,
feature_a_enabled,
feature_b_enabled,
feature_c_enabled,
):
my_sum = 0
for i in range(iterations):
if feature_a_enabled:
my_sum += 1
if feature_b_enabled:
my_sum += 2
if feature_c_enabled:
my_sum += 3
my_sum += i
bad_function(10000, False, False, False)
The same function with preprocessing. Do note that the values of the constants
are given as strings. This is so that the system can replace constants even with
e.g. comparisons such as "value >= 5"
or function calls. If you utilize
variables outside of the function body (e.g. decorators), pass those to the
preprocessor with variables
kwarg.
from codecutter import preprocess
@preprocess(
constants={
"FEATURE_A_ENABLED": "False",
"FEATURE_B_ENABLED": "False",
"FEATURE_C_ENABLED": "False",
}
)
def good_function(iterations):
my_sum = 0
for i in range(iterations):
if FEATURE_A_ENABLED:
my_sum += 1
if FEATURE_B_ENABLED:
my_sum += 2
if FEATURE_C_ENABLED:
my_sum += 3
my_sum += i
good_function(10000)
The source code of the preprocessed function
def good_function(iterations):
my_sum = 0
for i in range(iterations):
my_sum += i
Performance difference (best of 5 runs with %timeit
)
- Original:
267 µs ± 7.32 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
- Preprocessed:
196 µs ± 5.57 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
Over 26% improvement!
Footnote
ChatGPT seems to excel at README's.
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
Built Distribution
Hashes for codecutter-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a08bacfff4e29ac935ecd62953fcf5142d7ee965ae8ccc8c5bfa14b980268735 |
|
MD5 | 3f8b145506c619a7f4dd736553737ad5 |
|
BLAKE2b-256 | 5d8738a3f96947f12d091b63826eadb1ed21852d682b753d41453fd3e8b8911f |