BLAS学习笔记(二)


前面介绍了一级BLAS,即向量和向量的运算。二级BLAS,即矩阵和向量的运算,涉及O(mn)的标量运算。

二级BLAS的三种基本操作:

a)      Matrix-vector products (MV)

b)      Rank-one and rank-two updates (R&R2)

c)      Solution of triangle equations (SV)

 


你可能感兴趣的:(c)