Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/winstxnhdw/python-bench

Simple code optimisation benchmark for speed and accuracy.
https://github.com/winstxnhdw/python-bench

benchmark numba numpy python scipy

Last synced: about 13 hours ago
JSON representation

Simple code optimisation benchmark for speed and accuracy.

Awesome Lists containing this project

README

        

# python-bench

Simple code optimisation benchmark for speed and accuracy. Never will I write slow Python code like a noob again.

## Benchmarks

- Array/List Operations
- [Appending](src/appending.ipynb)
- [Prepending](src/prepending.ipynb)
- [Unpacking](src/unpacking.ipynb)
- [Homogeneous Arrays](src/homogeneous_arrays.ipynb)
- [Array Conversion](src/array_conversion.ipynb)
- Mathematical Operations
- [Exponentiation](src/exponentiation.ipynb)
- [Dot Product](src/dot_product.ipynb)
- [L2-Norm](src/l2_norm.ipynb)
- Libraries
- [NumPy Vectorisation/Broadcasting](src/vectorisation.ipynb)
- [NumPy hypot](src/numpy_hypot.ipynb)
- [Numba](src/numba.ipynb)
- [Math](src/math.ipynb)