lda in lapack and cublas

在BLAS-3.10.01 的 sgemm.f 文件中,有如下对LDA的描述:

\param[in] A
*> \verbatim
*>          A is REAL array, dimension ( LDA, ka ), where ka is
*>           k  when  TRANSA = 'N' or 'n',  and is  m  otherwise.
*>           Before entry with  TRANSA = 'N' or 'n',  the leading  m by k
*>           part of the array  A  must contain the matrix  A,  otherwise
*>           the leading  k by m  part of the array  A  must contain  the
*>           matrix A.
*> \endverbatim
*>
*> \param[in] LDA
*> \verbatim
*>          LDA is INTEGER
*>           On entry, LDA specifies the first dimension of A as declared
*>           in the calling (sub) program. When  TRANSA = 'N' or 'n' then
*>           LDA must be at least  max( 1, m ), otherwise  LDA must be at
*>           least  max( 1, k ).
*> \endverbatim

LDA 是矩阵中一列数据的长度,要么LDA>=m, 要么LDA>=k;

当 TRANSA = 'N' 时, LDA>=m; 这时,输入指针A指向的数据区域,是将一个矩阵Matrix_A(LDA, K) 按照列主序一维化存储下来的结果。

当TRANSA = 'T' 时, LDA>=k; 这时,输入指针A指向的数据区域,是将一个矩阵Matrix_A(LDA, M) 按照列主序一维化存储下来的结果,这时矩阵Matrix_A是以矩阵A的转置方式输入给函数SGEMM的。

ldb的理解,和 B 所给出的数据也一样。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值