基于LLVM的科学计算Python包Numpile.zip
Numpile 是极小的,由千行 Python 代码构成的,基于 LLVM 的数值科学计算工具。from numpile import autojit @autojit def dot(a, b): c = 0 n = a.shape[0] for i in range(n): c = a[i]*b[i] return c a = np.array(range(1000,2000), dtype='int32') b = np.array(range(3000,4000), dtype='int32') print dot(a,b)更多介绍
文件列表
numpile-master.zip
(预估有个8文件)
numpile-master
.gitignore
15B
README.md
1KB
Let's Write an LLVM Specializer for Python! (Stephen Diehl).ipynb
97KB
example_dot.py
276B
LICENSE
1KB
example_add.py
134B
numpile.py
28KB
requirements.txt
24B
暂无评论