用numba计算内积的正确方法

时间:2014-08-28 09:34:43

标签: python numpy matrix-multiplication numba

我正在尝试计算两个大矩阵的内积。似乎numpy在尝试计算点积时会创建矩阵的副本,这会导致一些内存问题。谷歌搜索后,我发现numba包有前途。但是,我无法使其正常工作。这是我的代码:

import numpy as np
from numba import jit
import time, contextlib



@contextlib.contextmanager
def timeit():
    t=time.time()
    yield
    print(time.time()-t,"sec")


def dot1(a,b):
    return np.dot(a,b)

@jit(nopython=True)
def dot2(a,b):
    n = a.shape[0]
    m = b.shape[1]
    K = b.shape[0]
    c = np.zeros((n,m))
    for i in xrange(n):
        for j in xrange(m):
            for k in range(K):
                c[i,j] += a[i,k]*b[k,j]

    return c



def main():
    a = np.random.random((200,1000))
    b = np.random.random((1000,400))

    with timeit():
        c1 = dot1(a,b)
    with timeit():
        c2 = dot2(a,b)

以下运行时间:

dot1:
(0.034691810607910156, 'sec')

dot2:
(0.9215810298919678, 'sec')

谁能告诉我这里缺少什么?

1 个答案:

答案 0 :(得分:1)

您的算法是天真的算法。 BLAS实现了更快的速度。

引用维基百科的matrix multiplication页面:

  

然而,它出现在几个库中,例如BLAS,其中对于尺寸n> 1的矩阵,它显着更有效。 100