mirror of https://github.com/davisking/dlib.git
Fixed a bug in cuda::gemm()
This commit is contained in:
parent
dae8929a64
commit
93410af39e
|
@ -110,8 +110,8 @@ namespace dlib
|
|||
mat(lhs).nc() == mat(rhs).nr(),"")
|
||||
}
|
||||
|
||||
const int m = mat(dest).nr();
|
||||
const int n = mat(dest).nc();
|
||||
const int m = mat(dest).nc();
|
||||
const int n = mat(dest).nr();
|
||||
const int k = trans_rhs ? mat(rhs).nc() : mat(rhs).nr();
|
||||
check(cublasSgemm(context(),
|
||||
transb,
|
||||
|
|
Loading…
Reference in New Issue