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
55631944
Commit
55631944
authored
Feb 20, 2014
by
Davis King
Browse files
Added a few more BLAS binding tests
parent
a7d236c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
dlib/test/blas_bindings/blas_bindings_dot.cpp
dlib/test/blas_bindings/blas_bindings_dot.cpp
+8
-0
No files found.
dlib/test/blas_bindings/blas_bindings_dot.cpp
View file @
55631944
...
...
@@ -146,10 +146,18 @@ namespace
val
=
dot
(
rv
,
cv
);
DLIB_TEST
(
counter_dot
()
==
1
);
counter_dot
()
=
0
;
val
=
dot
(
rv
,
colm
(
cv
,
0
));
DLIB_TEST
(
counter_dot
()
==
1
);
counter_dot
()
=
0
;
val
=
dot
(
cv
,
cv
);
DLIB_TEST
(
counter_dot
()
==
1
);
counter_dot
()
=
0
;
val
=
dot
(
colm
(
cv
,
0
,
cv
.
size
()),
colm
(
cv
,
0
));
DLIB_TEST
(
counter_dot
()
==
1
);
counter_dot
()
=
0
;
val
=
dot
(
rv
,
rv
);
DLIB_TEST
(
counter_dot
()
==
1
);
...
...
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