Speed up Python code that has well layed out type hints (works by converting the function to typed cython). Find more info at https://github.com/smpurkis/autocompile
Project description
AutoCompile
TLDR; Speed up Python code that is marked with type hints (by converting it to Cython)
This is a package born slightly out of surprise when I found out that type hints don't
speed up Python code at all, when all the information is there to be able to speed it up.
So I decided to write this short package, that analyzes the code of any function marked
with @autocompile
and converts it into a Cython inline function. For example,
def do_maths(x: float):
i: int
for i in range(10000000):
x += (i + x) ** 0.1
return x
will be converted to:
def do_maths(double x):
cdef long i
for i in range(10000000):
x += (i + x) ** 0.1
return x
Documentation
@autocompile
has the following arguments:
mode: "inline" or "file", type: str, default: "inline"
"inline": uses Cython inline as a backend, works with all imported libraries
"file": moves code to a tmp file and cythonizes it using subprocess, doesn't work with any imported libraries
infer_types: True or False, type: Bool, default: False
Enable Cython infer type option
checks_on: True or False, type: Bool, default: False
Enable Cython boundary and wrapping checking
required_imports: {} or globals(), type: Dict, default: {}
This is required for access to the globals of the calling module. As Python in its infinite wisdom doesn't allow
access without explicitly passing them.
Example:
@autocompile(required_imports=globals())
def foo(bar: int):
x = np.arange(bar)
return x
Without passing globals, Cython inline conversion will error, as it doesn't know what np (numpy) is.
debug: True or False, type: Bool, default: False
Shows the created function code to be used in place of the original
force_memview: True or False, type: Bool, default: False (currently disabled)
Forces all declared numpy arrays to be treated at cython memview. Can be unsafe, as addition of memviews
in cython is not supported while for numpy arrays it is.
Benchmark
Here are a few benchmarks of speed improvements (all code is in tests
folder):
tests/test_main.py::test_mixed_maths
maths_py took: 1.263 seconds
maths_nb took: 0.498 seconds
func_cy took: 2.489 seconds
maths_ac took: 0.486 seconds
PASSED
tests/test_main.py::test_list_type
lists_py took: 0.091 seconds
lists_nb took: 0.042 seconds
func_cy took: 0.049 seconds
lists_ac took: 0.053 seconds
PASSED
tests/test_main.py::test_mixed_types
mixed_py took: 0.513 seconds
mixed_nb took: 0.292 seconds
func_cy took: 0.199 seconds
mixed_ac took: 0.064 seconds
PASSED
tests/test_main.py::test_np_arr_in_body
np_array_in_body_py took: 0.494 seconds
np_array_in_body_nb took: 0.017 seconds
func_cy took: 0.45 seconds
np_array_in_body_ac took: 0.467 seconds
PASSED
tests/test_main.py::test_np_arr_in_args
np_array_in_args_py took: 0.443 seconds
np_array_in_args_nb took: 0.011 seconds
np_array_in_args_np took: 0.01 seconds
np_array_in_args_ac took: 0.016 seconds
PASSED
tests/test_main.py::test_strings
string_py took: 0.049 seconds
string_nb took: 0.795 seconds
func_cy took: 0.721 seconds
string_ac took: 0.038 seconds
PASSED
notes:
- The
test_strings
is using cython version3.0a6
, using<3.0
yields results similar to numba. - This is using
cython.compile
, to compare against, as it is the closest function toautocompile
(ac
).
As can be seen, ac
is best at a mixture of base Python types, lists, dicts, numbers. It offers
selective speed up for arrays at the moment (via numpy array inputs as arguments)
Potential improvements:
- Add support for return types (relatively straightforward)
- Add a backend like Nim or Julia (a lot of work)
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
File details
Details for the file autocompile-0.2.1.tar.gz
.
File metadata
- Download URL: autocompile-0.2.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efac1d86432287cd3a85f803f65da764c636ce5668e814b744c666db57ea684c |
|
MD5 | be59be30a320128f6a069b7678a5c8ec |
|
BLAKE2b-256 | 06ddbf20a15f81035a09976a88f17bb49c75c1daa1b6ea7e6fa08191b7870263 |
File details
Details for the file autocompile-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: autocompile-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e5e39750b803e7e3756f78b9f2b7671051cec7c6ca8f1f1274ea89fcd242859 |
|
MD5 | 2e8ebe7976ed6be1eeb6a473124bf5ca |
|
BLAKE2b-256 | 573bcb8d24753edf86fc58c1c0eed6797b88d56ad80673a51ba337022db7d266 |