0

cblas_sgemv在 openblas 中使用了一些测试,发现它在我的测试用例中返回了错误的结果。

A is
1 2
3 4
5 6

B is 
1 2

输出 C 应该是5 11 17

但是,它输出5 14 0

这是示例代码。 https://docs.google.com/document/d/15mCkfcQuruQxi4CjvVkoK2jfgnG2w3izd0wMFMW6UOk/edit?usp=sharing

4

1 回答 1

0

lda 参数似乎是错误的。因为订单是 CblasRowMajor 它应该是 2(列数)而不是 3(行数)。

参看。https://stackoverflow.com/a/30208420/6058571

于 2017-08-27T02:03:28.840 回答