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)

更多介绍请看这里


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务