当使用MKL BLAS时,scipy是否支持稀疏矩阵乘法的多线程?

6
根据MKL BLAS文档,“所有矩阵-矩阵操作(level 3)都支持密集和稀疏BLAS的线程。” http://software.intel.com/en-us/articles/parallelism-in-the-intel-math-kernel-library 我已使用MKL BLAS构建了Scipy。使用下面的测试代码,我看到了预期的多线程加速效果,但是在稀疏矩阵乘法方面没有看到。是否有任何更改可以使Scipy支持多线程稀疏操作?
# test dense matrix multiplication
from numpy import *
import time    
x = random.random((10000,10000))
t1 = time.time()
foo = dot(x.T, x)
print time.time() - t1

# test sparse matrix multiplication
from scipy import sparse
x = sparse.rand(10000,10000)
t1 = time.time()
foo = dot(x.T, x)
print time.time() - t1
2个回答

9
据我所知,答案是否定的。但是,您可以围绕MKL稀疏乘法例程构建自己的包装器。您询问了两个稀疏矩阵相乘的问题。以下是我用于将一个稀疏矩阵乘以一个密集向量的包装器代码,因此很容易进行适应(查看Intel MKL参考mkl_cspblas_dcsrgemm)。此外,请注意您的scipy数组存储方式:默认为coo,但csr(或csc)可能是更好的选择。我选择了csr,但MKL支持大多数类型(只需调用适当的例程)。
据我所知,scipy的默认设置和MKL都是多线程的。通过更改OMP_NUM_THREADS,我可以看到性能上的差异。
要使用下面的函数,如果您有最新版本的MKL,请确保已将LD_LIBRARY_PATHS设置为包括相关的MKL目录。对于旧版本,您需要构建一些特定的库。我从IntelMKL in python获取了我的信息。
def SpMV_viaMKL( A, x ):
 """
 Wrapper to Intel's SpMV
 (Sparse Matrix-Vector multiply)
 For medium-sized matrices, this is 4x faster
 than scipy's default implementation
 Stephen Becker, April 24 2014
 stephen.beckr@gmail.com
 """

 import numpy as np
 import scipy.sparse as sparse
 from ctypes import POINTER,c_void_p,c_int,c_char,c_double,byref,cdll
 mkl = cdll.LoadLibrary("libmkl_rt.so")

 SpMV = mkl.mkl_cspblas_dcsrgemv
 # Dissecting the "cspblas_dcsrgemv" name:
 # "c" - for "c-blas" like interface (as opposed to fortran)
 #    Also means expects sparse arrays to use 0-based indexing, which python does
 # "sp"  for sparse
 # "d"   for double-precision
 # "csr" for compressed row format
 # "ge"  for "general", e.g., the matrix has no special structure such as symmetry
 # "mv"  for "matrix-vector" multiply

 if not sparse.isspmatrix_csr(A):
     raise Exception("Matrix must be in csr format")
 (m,n) = A.shape

 # The data of the matrix
 data    = A.data.ctypes.data_as(POINTER(c_double))
 indptr  = A.indptr.ctypes.data_as(POINTER(c_int))
 indices = A.indices.ctypes.data_as(POINTER(c_int))

 # Allocate output, using same conventions as input
 nVectors = 1
 if x.ndim is 1:
    y = np.empty(m,dtype=np.double,order='F')
    if x.size != n:
        raise Exception("x must have n entries. x.size is %d, n is %d" % (x.size,n))
 elif x.shape[1] is 1:
    y = np.empty((m,1),dtype=np.double,order='F')
    if x.shape[0] != n:
        raise Exception("x must have n entries. x.size is %d, n is %d" % (x.size,n))
 else:
    nVectors = x.shape[1]
    y = np.empty((m,nVectors),dtype=np.double,order='F')
    if x.shape[0] != n:
        raise Exception("x must have n entries. x.size is %d, n is %d" % (x.size,n))

 # Check input
 if x.dtype.type is not np.double:
    x = x.astype(np.double,copy=True)
 # Put it in column-major order, otherwise for nVectors > 1 this FAILS completely
 if x.flags['F_CONTIGUOUS'] is not True:
    x = x.copy(order='F')

 if nVectors == 1:
    np_x = x.ctypes.data_as(POINTER(c_double))
    np_y = y.ctypes.data_as(POINTER(c_double))
    # now call MKL. This returns the answer in np_y, which links to y
    SpMV(byref(c_char("N")), byref(c_int(m)),data ,indptr, indices, np_x, np_y ) 
 else:
    for columns in xrange(nVectors):
        xx = x[:,columns]
        yy = y[:,columns]
        np_x = xx.ctypes.data_as(POINTER(c_double))
        np_y = yy.ctypes.data_as(POINTER(c_double))
        SpMV(byref(c_char("N")), byref(c_int(m)),data,indptr, indices, np_x, np_y ) 

 return y

谢谢你这个精美的答案!我不得不将 c_char("N") 更改为 c_char(b'N'))(一个字节字符串),但除此之外,这个代码非常好用。 - Nelewout

0

虽然这个链接可能回答了问题,但最好在这里包含答案的关键部分,并提供链接供参考。如果链接的页面发生变化,仅有链接的答案可能会变得无效。- 来自评论 - undefined
你的回答可以通过提供更多的支持性信息来改进。请编辑以添加进一步的细节,例如引用或文档,以便他人可以确认你的回答是否正确。你可以在帮助中心找到关于如何撰写好回答的更多信息。 - undefined
更新了答案 :) - undefined

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接