Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
bb3a4163
Commit
bb3a4163
authored
May 19, 2017
by
Ryuhei Mori
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cpu features detection on android
parent
913a2dbd
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
178 additions
and
13 deletions
+178
-13
CMakeLists.txt
3rdparty/cpufeatures/CMakeLists.txt
+29
-0
cpu-features.c
3rdparty/cpufeatures/cpu-features.c
+0
-0
cpu-features.h
3rdparty/cpufeatures/cpu-features.h
+132
-4
CMakeLists.txt
3rdparty/libwebp/CMakeLists.txt
+2
-7
CMakeLists.txt
CMakeLists.txt
+4
-0
CMakeLists.txt
modules/core/CMakeLists.txt
+2
-2
system.cpp
modules/core/src/system.cpp
+9
-0
No files found.
3rdparty/cpufeatures/CMakeLists.txt
0 → 100644
View file @
bb3a4163
ocv_include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
file
(
GLOB cpuf_s *.c
)
file
(
GLOB cpuf_h *.h
)
set
(
lib_srcs
${
cpuf_s
}
)
set
(
lib_hdrs
${
cpuf_h
}
)
set
(
CPUFEATURES_INCLUDE_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
CACHE INTERNAL
""
)
set
(
CPUFEATURES_LIBRARIES cpufeatures CACHE INTERNAL
""
)
add_library
(
cpufeatures STATIC
${
lib_srcs
}
${
lib_hdrs
}
)
set_target_properties
(
cpufeatures
PROPERTIES OUTPUT_NAME cpufeatures
DEBUG_POSTFIX
"
${
OPENCV_DEBUG_POSTFIX
}
"
COMPILE_PDB_NAME cpufeatures
COMPILE_PDB_NAME_DEBUG
"cpufeatures
${
OPENCV_DEBUG_POSTFIX
}
"
ARCHIVE_OUTPUT_DIRECTORY
${
3P_LIBRARY_OUTPUT_PATH
}
)
if
(
ENABLE_SOLUTION_FOLDERS
)
set_target_properties
(
cpufeatures PROPERTIES FOLDER
"3rdparty"
)
endif
()
if
(
NOT BUILD_SHARED_LIBS
)
ocv_install_target
(
cpufeatures EXPORT OpenCVModules ARCHIVE DESTINATION
${
OPENCV_3P_LIB_INSTALL_PATH
}
COMPONENT dev
)
endif
()
3rdparty/
libwebp/cpu-
features/cpu-features.c
→
3rdparty/
cpu
features/cpu-features.c
View file @
bb3a4163
This diff is collapsed.
Click to expand it.
3rdparty/
libwebp/cpu-
features/cpu-features.h
→
3rdparty/
cpu
features/cpu-features.h
View file @
bb3a4163
...
@@ -33,21 +33,40 @@
...
@@ -33,21 +33,40 @@
__BEGIN_DECLS
__BEGIN_DECLS
/* A list of valid values returned by android_getCpuFamily().
* They describe the CPU Architecture of the current process.
*/
typedef
enum
{
typedef
enum
{
ANDROID_CPU_FAMILY_UNKNOWN
=
0
,
ANDROID_CPU_FAMILY_UNKNOWN
=
0
,
ANDROID_CPU_FAMILY_ARM
,
ANDROID_CPU_FAMILY_ARM
,
ANDROID_CPU_FAMILY_X86
,
ANDROID_CPU_FAMILY_X86
,
ANDROID_CPU_FAMILY_MIPS
,
ANDROID_CPU_FAMILY_MIPS
,
ANDROID_CPU_FAMILY_ARM64
,
ANDROID_CPU_FAMILY_X86_64
,
ANDROID_CPU_FAMILY_MIPS64
,
ANDROID_CPU_FAMILY_MAX
/* do not remove */
ANDROID_CPU_FAMILY_MAX
/* do not remove */
}
AndroidCpuFamily
;
}
AndroidCpuFamily
;
/* Return family of the device's CPU */
/* Return the CPU family of the current process.
*
* Note that this matches the bitness of the current process. I.e. when
* running a 32-bit binary on a 64-bit capable CPU, this will return the
* 32-bit CPU family value.
*/
extern
AndroidCpuFamily
android_getCpuFamily
(
void
);
extern
AndroidCpuFamily
android_getCpuFamily
(
void
);
/* The list of feature flags for ARM CPUs that can be recognized by the
/* Return a bitmap describing a set of optional CPU features that are
* library. Value details are:
* supported by the current device's CPU. The exact bit-flags returned
* depend on the value returned by android_getCpuFamily(). See the
* documentation for the ANDROID_CPU_*_FEATURE_* flags below for details.
*/
extern
uint64_t
android_getCpuFeatures
(
void
);
/* The list of feature flags for ANDROID_CPU_FAMILY_ARM that can be
* recognized by the library (see note below for 64-bit ARM). Value details
* are:
*
*
* VFPv2:
* VFPv2:
* CPU supports the VFPv2 instruction set. Many, but not all, ARMv6 CPUs
* CPU supports the VFPv2 instruction set. Many, but not all, ARMv6 CPUs
...
@@ -103,6 +122,27 @@ extern AndroidCpuFamily android_getCpuFamily(void);
...
@@ -103,6 +122,27 @@ extern AndroidCpuFamily android_getCpuFamily(void);
* ARM CPU. This is only available on a few XScale-based CPU designs
* ARM CPU. This is only available on a few XScale-based CPU designs
* sold by Marvell. Pretty rare in practice.
* sold by Marvell. Pretty rare in practice.
*
*
* AES:
* CPU supports AES instructions. These instructions are only
* available for 32-bit applications running on ARMv8 CPU.
*
* CRC32:
* CPU supports CRC32 instructions. These instructions are only
* available for 32-bit applications running on ARMv8 CPU.
*
* SHA2:
* CPU supports SHA2 instructions. These instructions are only
* available for 32-bit applications running on ARMv8 CPU.
*
* SHA1:
* CPU supports SHA1 instructions. These instructions are only
* available for 32-bit applications running on ARMv8 CPU.
*
* PMULL:
* CPU supports 64-bit PMULL and PMULL2 instructions. These
* instructions are only available for 32-bit applications
* running on ARMv8 CPU.
*
* If you want to tell the compiler to generate code that targets one of
* If you want to tell the compiler to generate code that targets one of
* the feature set above, you should probably use one of the following
* the feature set above, you should probably use one of the following
* flags (for more details, see technical note at the end of this file):
* flags (for more details, see technical note at the end of this file):
...
@@ -150,6 +190,13 @@ extern AndroidCpuFamily android_getCpuFamily(void);
...
@@ -150,6 +190,13 @@ extern AndroidCpuFamily android_getCpuFamily(void);
*
*
* -mcpu=iwmmxt
* -mcpu=iwmmxt
* Allows the use of iWMMXt instrinsics with GCC.
* Allows the use of iWMMXt instrinsics with GCC.
*
* IMPORTANT NOTE: These flags should only be tested when
* android_getCpuFamily() returns ANDROID_CPU_FAMILY_ARM, i.e. this is a
* 32-bit process.
*
* When running a 64-bit ARM process on an ARMv8 CPU,
* android_getCpuFeatures() will return a different set of bitflags
*/
*/
enum
{
enum
{
ANDROID_CPU_ARM_FEATURE_ARMv7
=
(
1
<<
0
),
ANDROID_CPU_ARM_FEATURE_ARMv7
=
(
1
<<
0
),
...
@@ -164,15 +211,81 @@ enum {
...
@@ -164,15 +211,81 @@ enum {
ANDROID_CPU_ARM_FEATURE_IDIV_ARM
=
(
1
<<
9
),
ANDROID_CPU_ARM_FEATURE_IDIV_ARM
=
(
1
<<
9
),
ANDROID_CPU_ARM_FEATURE_IDIV_THUMB2
=
(
1
<<
10
),
ANDROID_CPU_ARM_FEATURE_IDIV_THUMB2
=
(
1
<<
10
),
ANDROID_CPU_ARM_FEATURE_iWMMXt
=
(
1
<<
11
),
ANDROID_CPU_ARM_FEATURE_iWMMXt
=
(
1
<<
11
),
ANDROID_CPU_ARM_FEATURE_AES
=
(
1
<<
12
),
ANDROID_CPU_ARM_FEATURE_PMULL
=
(
1
<<
13
),
ANDROID_CPU_ARM_FEATURE_SHA1
=
(
1
<<
14
),
ANDROID_CPU_ARM_FEATURE_SHA2
=
(
1
<<
15
),
ANDROID_CPU_ARM_FEATURE_CRC32
=
(
1
<<
16
),
};
/* The bit flags corresponding to the output of android_getCpuFeatures()
* when android_getCpuFamily() returns ANDROID_CPU_FAMILY_ARM64. Value details
* are:
*
* FP:
* CPU has Floating-point unit.
*
* ASIMD:
* CPU has Advanced SIMD unit.
*
* AES:
* CPU supports AES instructions.
*
* CRC32:
* CPU supports CRC32 instructions.
*
* SHA2:
* CPU supports SHA2 instructions.
*
* SHA1:
* CPU supports SHA1 instructions.
*
* PMULL:
* CPU supports 64-bit PMULL and PMULL2 instructions.
*/
enum
{
ANDROID_CPU_ARM64_FEATURE_FP
=
(
1
<<
0
),
ANDROID_CPU_ARM64_FEATURE_ASIMD
=
(
1
<<
1
),
ANDROID_CPU_ARM64_FEATURE_AES
=
(
1
<<
2
),
ANDROID_CPU_ARM64_FEATURE_PMULL
=
(
1
<<
3
),
ANDROID_CPU_ARM64_FEATURE_SHA1
=
(
1
<<
4
),
ANDROID_CPU_ARM64_FEATURE_SHA2
=
(
1
<<
5
),
ANDROID_CPU_ARM64_FEATURE_CRC32
=
(
1
<<
6
),
};
};
/* The bit flags corresponding to the output of android_getCpuFeatures()
* when android_getCpuFamily() returns ANDROID_CPU_FAMILY_X86 or
* ANDROID_CPU_FAMILY_X86_64.
*/
enum
{
enum
{
ANDROID_CPU_X86_FEATURE_SSSE3
=
(
1
<<
0
),
ANDROID_CPU_X86_FEATURE_SSSE3
=
(
1
<<
0
),
ANDROID_CPU_X86_FEATURE_POPCNT
=
(
1
<<
1
),
ANDROID_CPU_X86_FEATURE_POPCNT
=
(
1
<<
1
),
ANDROID_CPU_X86_FEATURE_MOVBE
=
(
1
<<
2
),
ANDROID_CPU_X86_FEATURE_MOVBE
=
(
1
<<
2
),
ANDROID_CPU_X86_FEATURE_SSE4_1
=
(
1
<<
3
),
ANDROID_CPU_X86_FEATURE_SSE4_2
=
(
1
<<
4
),
ANDROID_CPU_X86_FEATURE_AES_NI
=
(
1
<<
5
),
ANDROID_CPU_X86_FEATURE_AVX
=
(
1
<<
6
),
ANDROID_CPU_X86_FEATURE_RDRAND
=
(
1
<<
7
),
ANDROID_CPU_X86_FEATURE_AVX2
=
(
1
<<
8
),
ANDROID_CPU_X86_FEATURE_SHA_NI
=
(
1
<<
9
),
};
/* The bit flags corresponding to the output of android_getCpuFeatures()
* when android_getCpuFamily() returns ANDROID_CPU_FAMILY_MIPS
* or ANDROID_CPU_FAMILY_MIPS64. Values are:
*
* R6:
* CPU executes MIPS Release 6 instructions natively, and
* supports obsoleted R1..R5 instructions only via kernel traps.
*
* MSA:
* CPU supports Mips SIMD Architecture instructions.
*/
enum
{
ANDROID_CPU_MIPS_FEATURE_R6
=
(
1
<<
0
),
ANDROID_CPU_MIPS_FEATURE_MSA
=
(
1
<<
1
),
};
};
extern
uint64_t
android_getCpuFeatures
(
void
);
/* Return the number of CPU cores detected on this device. */
/* Return the number of CPU cores detected on this device. */
extern
int
android_getCpuCount
(
void
);
extern
int
android_getCpuCount
(
void
);
...
@@ -190,6 +303,21 @@ extern int android_getCpuCount(void);
...
@@ -190,6 +303,21 @@ extern int android_getCpuCount(void);
extern
int
android_setCpu
(
int
cpu_count
,
extern
int
android_setCpu
(
int
cpu_count
,
uint64_t
cpu_features
);
uint64_t
cpu_features
);
#ifdef __arm__
/* Retrieve the ARM 32-bit CPUID value from the kernel.
* Note that this cannot work on sandboxed processes under 4.1 and
* higher, unless you called android_setCpuArm() before.
*/
extern
uint32_t
android_getCpuIdArm
(
void
);
/* An ARM-specific variant of android_setCpu() that also allows you
* to set the ARM CPUID field.
*/
extern
int
android_setCpuArm
(
int
cpu_count
,
uint64_t
cpu_features
,
uint32_t
cpu_id
);
#endif
__END_DECLS
__END_DECLS
#endif
/* CPU_FEATURES_H */
#endif
/* CPU_FEATURES_H */
3rdparty/libwebp/CMakeLists.txt
View file @
bb3a4163
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
project
(
${
WEBP_LIBRARY
}
)
project
(
${
WEBP_LIBRARY
}
)
ocv_include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
ocv_include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
ocv_include_directories
(
"
${
C
MAKE_CURRENT_SOURCE_DIR
}
/cpu-features
"
)
ocv_include_directories
(
"
${
C
PUFEATURES_INCLUDE_DIR
}
"
)
file
(
GLOB lib_srcs dec/*.c demux/*.c dsp/*.c enc/*.c mux/*.c utils/*.c webp/*.c
)
file
(
GLOB lib_srcs dec/*.c demux/*.c dsp/*.c enc/*.c mux/*.c utils/*.c webp/*.c
)
file
(
GLOB lib_hdrs dec/*.h demux/*.h dsp/*.h enc/*.h mux/*.h utils/*.h webp/*.h
)
file
(
GLOB lib_hdrs dec/*.h demux/*.h dsp/*.h enc/*.h mux/*.h utils/*.h webp/*.h
)
...
@@ -19,13 +19,7 @@ if(ANDROID AND ARMEABI_V7A AND NOT NEON)
...
@@ -19,13 +19,7 @@ if(ANDROID AND ARMEABI_V7A AND NOT NEON)
endforeach
()
endforeach
()
endif
()
endif
()
file
(
GLOB cpuf_s cpu-features/*.c
)
file
(
GLOB cpuf_h cpu-features/*.h
)
if
(
ANDROID
)
set
(
lib_srcs
${
lib_srcs
}
${
cpuf_s
}
)
set
(
lib_hdrs
${
lib_hdrs
}
${
cpuf_h
}
)
endif
()
# ----------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------
# Define the library target:
# Define the library target:
...
@@ -34,6 +28,7 @@ endif()
...
@@ -34,6 +28,7 @@ endif()
add_definitions
(
-DWEBP_USE_THREAD
)
add_definitions
(
-DWEBP_USE_THREAD
)
add_library
(
${
WEBP_LIBRARY
}
STATIC
${
lib_srcs
}
${
lib_hdrs
}
)
add_library
(
${
WEBP_LIBRARY
}
STATIC
${
lib_srcs
}
${
lib_hdrs
}
)
target_link_libraries
(
${
WEBP_LIBRARY
}
${
CPUFEATURES_LIBRARIES
}
)
if
(
UNIX
)
if
(
UNIX
)
if
(
CMAKE_COMPILER_IS_GNUCXX OR CV_ICC
)
if
(
CMAKE_COMPILER_IS_GNUCXX OR CV_ICC
)
...
...
CMakeLists.txt
View file @
bb3a4163
...
@@ -573,6 +573,10 @@ endif()
...
@@ -573,6 +573,10 @@ endif()
# Detect 3rd-party libraries
# Detect 3rd-party libraries
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
if
(
ANDROID
)
add_subdirectory
(
3rdparty/cpufeatures
)
endif
()
include
(
cmake/OpenCVFindLibsGrfmt.cmake
)
include
(
cmake/OpenCVFindLibsGrfmt.cmake
)
include
(
cmake/OpenCVFindLibsGUI.cmake
)
include
(
cmake/OpenCVFindLibsGUI.cmake
)
include
(
cmake/OpenCVFindLibsVideo.cmake
)
include
(
cmake/OpenCVFindLibsVideo.cmake
)
...
...
modules/core/CMakeLists.txt
View file @
bb3a4163
...
@@ -32,10 +32,10 @@ source_group("Src" FILES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string
...
@@ -32,10 +32,10 @@ source_group("Src" FILES "${OPENCV_MODULE_opencv_core_BINARY_DIR}/version_string
ocv_glob_module_sources
(
SOURCES
"
${
OPENCV_MODULE_opencv_core_BINARY_DIR
}
/version_string.inc"
ocv_glob_module_sources
(
SOURCES
"
${
OPENCV_MODULE_opencv_core_BINARY_DIR
}
/version_string.inc"
HEADERS
${
lib_cuda_hdrs
}
${
lib_cuda_hdrs_detail
}
)
HEADERS
${
lib_cuda_hdrs
}
${
lib_cuda_hdrs_detail
}
)
ocv_module_include_directories
(
${
the_module
}
${
ZLIB_INCLUDE_DIRS
}
${
OPENCL_INCLUDE_DIRS
}
)
ocv_module_include_directories
(
${
the_module
}
${
ZLIB_INCLUDE_DIRS
}
${
OPENCL_INCLUDE_DIRS
}
${
CPUFEATURES_INCLUDE_DIR
}
)
ocv_create_module
(
${
extra_libs
}
)
ocv_create_module
(
${
extra_libs
}
)
ocv_target_link_libraries
(
${
the_module
}
${
ZLIB_LIBRARIES
}
"
${
OPENCL_LIBRARIES
}
"
"
${
VA_LIBRARIES
}
"
"
${
LAPACK_LIBRARIES
}
"
)
ocv_target_link_libraries
(
${
the_module
}
${
ZLIB_LIBRARIES
}
"
${
OPENCL_LIBRARIES
}
"
"
${
VA_LIBRARIES
}
"
"
${
LAPACK_LIBRARIES
}
"
"
${
CPUFEATURES_LIBRARIES
}
"
)
ocv_add_accuracy_tests
()
ocv_add_accuracy_tests
()
ocv_add_perf_tests
()
ocv_add_perf_tests
()
modules/core/src/system.cpp
View file @
bb3a4163
...
@@ -73,6 +73,10 @@ Mutex* __initialization_mutex_initializer = &getInitializationMutex();
...
@@ -73,6 +73,10 @@ Mutex* __initialization_mutex_initializer = &getInitializationMutex();
#endif
#endif
#endif
#endif
#if defined ANDROID
# include <cpu-features.h>
#endif
#if defined WIN32 || defined _WIN32 || defined WINCE
#if defined WIN32 || defined _WIN32 || defined WINCE
#ifndef _WIN32_WINNT // This is needed for the declaration of TryEnterCriticalSection in winbase.h with Visual Studio 2005 (and older?)
#ifndef _WIN32_WINNT // This is needed for the declaration of TryEnterCriticalSection in winbase.h with Visual Studio 2005 (and older?)
#define _WIN32_WINNT 0x0400 // http://msdn.microsoft.com/en-us/library/ms686857(VS.85).aspx
#define _WIN32_WINNT 0x0400 // http://msdn.microsoft.com/en-us/library/ms686857(VS.85).aspx
...
@@ -467,6 +471,11 @@ struct HWFeatures
...
@@ -467,6 +471,11 @@ struct HWFeatures
close
(
cpufile
);
close
(
cpufile
);
}
}
#ifdef ANDROID
uint64_t
features
=
android_getCpuFeatures
();
have
[
CV_CPU_NEON
]
=
(
features
&
ANDROID_CPU_ARM_FEATURE_NEON
)
!=
0
;
have
[
CV_CPU_FP16
]
=
(
features
&
ANDROID_CPU_ARM_FEATURE_VFP_FP16
)
!=
0
;
#endif
#endif
#endif
#elif (defined __clang__ || defined __APPLE__)
#elif (defined __clang__ || defined __APPLE__)
#if (defined __ARM_NEON__ || (defined __ARM_NEON && defined __aarch64__))
#if (defined __ARM_NEON__ || (defined __ARM_NEON && defined __aarch64__))
...
...
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