https://github.com/zvyn/fibonacy
Some code playing around with cython and cProfile.
https://github.com/zvyn/fibonacy
Last synced: about 1 year ago
JSON representation
Some code playing around with cython and cProfile.
- Host: GitHub
- URL: https://github.com/zvyn/fibonacy
- Owner: zvyn
- Created: 2017-06-22T19:52:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T11:45:21.000Z (almost 9 years ago)
- Last Synced: 2025-02-03T14:46:51.415Z (about 1 year ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Playing around with cython and cProfile.
Example usage:
$ N=100000 ./profile_time.py
python fib(100000) took 1626.805989s
cython fib(100000) took 0.043696s
cython fib was 37230 times faster