├── .gitignore ├── LICENSE ├── Let's Write an LLVM Specializer for Python! (Stephen Diehl).ipynb ├── README.md ├── example_add.py ├── example_dot.py ├── numpile.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[po] 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/LICENSE -------------------------------------------------------------------------------- /Let's Write an LLVM Specializer for Python! (Stephen Diehl).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/Let's Write an LLVM Specializer for Python! (Stephen Diehl).ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/README.md -------------------------------------------------------------------------------- /example_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/example_add.py -------------------------------------------------------------------------------- /example_dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/example_dot.py -------------------------------------------------------------------------------- /numpile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdiehl/numpile/HEAD/numpile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | llvmlite 2 | numpy>=1.7.0 3 | --------------------------------------------------------------------------------