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
0bb79f86
Commit
0bb79f86
authored
Jan 16, 2018
by
Davis King
Browse files
Fixed grammar
parent
28f91119
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
dlib/simd/simd_check.h
dlib/simd/simd_check.h
+5
-5
No files found.
dlib/simd/simd_check.h
View file @
0bb79f86
...
@@ -154,19 +154,19 @@
...
@@ -154,19 +154,19 @@
{
{
#if defined(DLIB_HAVE_AVX2)
#if defined(DLIB_HAVE_AVX2)
if
(
!
cpu_has_avx2_instructions
())
if
(
!
cpu_has_avx2_instructions
())
std
::
cerr
<<
"Dlib was compiled to use AVX2 instructions, but these aren't available on your machine"
<<
std
::
endl
;
std
::
cerr
<<
"Dlib was compiled to use AVX2 instructions, but these aren't available on your machine
.
"
<<
std
::
endl
;
#elif defined(DLIB_HAVE_AVX)
#elif defined(DLIB_HAVE_AVX)
if
(
!
cpu_has_avx_instructions
())
if
(
!
cpu_has_avx_instructions
())
std
::
cerr
<<
"Dlib was compiled to use AVX instructions, but these aren't available on your machine"
<<
std
::
endl
;
std
::
cerr
<<
"Dlib was compiled to use AVX instructions, but these aren't available on your machine
.
"
<<
std
::
endl
;
#elif defined(DLIB_HAVE_SSE41)
#elif defined(DLIB_HAVE_SSE41)
if
(
!
cpu_has_sse41_instructions
())
if
(
!
cpu_has_sse41_instructions
())
std
::
cerr
<<
"Dlib was compiled to use SSE41 instructions, but these aren't available on your machine"
<<
std
::
endl
;
std
::
cerr
<<
"Dlib was compiled to use SSE41 instructions, but these aren't available on your machine
.
"
<<
std
::
endl
;
#elif defined(DLIB_HAVE_SSE3)
#elif defined(DLIB_HAVE_SSE3)
if
(
!
cpu_has_sse3_instructions
())
if
(
!
cpu_has_sse3_instructions
())
std
::
cerr
<<
"Dlib was compiled to use SSE3 instructions, but these aren't available on your machine"
<<
std
::
endl
;
std
::
cerr
<<
"Dlib was compiled to use SSE3 instructions, but these aren't available on your machine
.
"
<<
std
::
endl
;
#elif defined(DLIB_HAVE_SSE2)
#elif defined(DLIB_HAVE_SSE2)
if
(
!
cpu_has_sse2_instructions
())
if
(
!
cpu_has_sse2_instructions
())
std
::
cerr
<<
"Dlib was compiled to use SSE2 instructions, but these aren't available on your machine"
<<
std
::
endl
;
std
::
cerr
<<
"Dlib was compiled to use SSE2 instructions, but these aren't available on your machine
.
"
<<
std
::
endl
;
#endif
#endif
}
}
...
...
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