Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
seo young Joung
opencv
Commits
db6a6cca
Commit
db6a6cca
authored
5 years ago
by
Tomoaki Teshima
Browse files
Options
Download
Email Patches
Plain Diff
re-enable CPU_BASELINE=FP16 on Armv7 platform
parent
edf2cbd5
4.x
3.4
5.x
master
next
4.5.5
4.5.4
4.5.3
4.5.3-openvino
4.5.3-openvino-2021.4.2
4.5.3-openvino-2021.4.1
4.5.2
4.5.2-openvino
4.5.1
4.5.1-openvino
4.5.0
4.5.0-openvino
4.4.0
4.4.0-openvino
4.3.0
4.3.0-openvino
4.3.0-openvino-2020.3.0
4.2.0
4.2.0-openvino
4.1.2
4.1.2-openvino
4.1.1
4.1.1-openvino
3.4.17
3.4.16
3.4.15
3.4.14
3.4.13
3.4.12
3.4.11
3.4.10
3.4.9
3.4.8
3.4.7
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/OpenCVCompilerOptimizations.cmake
+1
-4
cmake/OpenCVCompilerOptimizations.cmake
with
1 addition
and
4 deletions
+1
-4
cmake/OpenCVCompilerOptimizations.cmake
View file @
db6a6cca
...
...
@@ -329,7 +329,7 @@ elseif(ARM OR AARCH64)
ocv_update
(
CPU_VFPV3_FLAGS_ON
"-mfpu=vfpv3"
)
ocv_update
(
CPU_NEON_FLAGS_ON
"-mfpu=neon"
)
ocv_update
(
CPU_NEON_FLAGS_CONFLICT
"-mfpu=[^ ]*"
)
ocv_update
(
CPU_FP16_FLAGS_ON
"-mfpu=neon-fp16"
)
ocv_update
(
CPU_FP16_FLAGS_ON
"-mfpu=neon-fp16
-mfp16-format=ieee
"
)
ocv_update
(
CPU_FP16_FLAGS_CONFLICT
"-mfpu=[^ ]*"
)
endif
()
ocv_update
(
CPU_FP16_IMPLIES
"NEON"
)
...
...
@@ -617,9 +617,6 @@ macro(ocv_compiler_optimization_options)
if
(
ENABLE_POWERPC
)
add_extra_compiler_option
(
"-mcpu=G3 -mtune=G5"
)
endif
()
if
(
ARM
)
add_extra_compiler_option
(
"-mfp16-format=ieee"
)
endif
(
ARM
)
endmacro
()
macro
(
ocv_compiler_optimization_options_finalize
)
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help