Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
93410af3
Commit
93410af3
authored
Nov 03, 2015
by
Davis King
Browse files
Fixed a bug in cuda::gemm()
parent
dae8929a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/dnn/cublas_dlibapi.cpp
dlib/dnn/cublas_dlibapi.cpp
+2
-2
No files found.
dlib/dnn/cublas_dlibapi.cpp
View file @
93410af3
...
@@ -110,8 +110,8 @@ namespace dlib
...
@@ -110,8 +110,8 @@ namespace dlib
mat
(
lhs
).
nc
()
==
mat
(
rhs
).
nr
(),
""
)
mat
(
lhs
).
nc
()
==
mat
(
rhs
).
nr
(),
""
)
}
}
const
int
m
=
mat
(
dest
).
n
r
();
const
int
m
=
mat
(
dest
).
n
c
();
const
int
n
=
mat
(
dest
).
n
c
();
const
int
n
=
mat
(
dest
).
n
r
();
const
int
k
=
trans_rhs
?
mat
(
rhs
).
nc
()
:
mat
(
rhs
).
nr
();
const
int
k
=
trans_rhs
?
mat
(
rhs
).
nc
()
:
mat
(
rhs
).
nr
();
check
(
cublasSgemm
(
context
(),
check
(
cublasSgemm
(
context
(),
transb
,
transb
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment