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
e44b2aa2
Commit
e44b2aa2
authored
Jan 23, 2016
by
Davis King
Browse files
Added missing requirements check.
parent
21e3e81f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
dlib/dnn/cudnn_dlibapi.cpp
dlib/dnn/cudnn_dlibapi.cpp
+3
-1
No files found.
dlib/dnn/cudnn_dlibapi.cpp
View file @
e44b2aa2
...
...
@@ -268,7 +268,9 @@ namespace dlib
grad
.
nr
()
==
1
&&
grad
.
nc
()
==
1
&&
gradient_input
.
k
()
==
grad
.
k
()
&&
gradient_input
.
size
()
>
0
,
""
);
gradient_input
.
size
()
>
0
&&
is_same_object
(
grad
,
gradient_input
)
==
false
,
""
);
const
float
alpha
=
1
;
const
float
beta
=
0
;
...
...
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