Commit 72f84ca1 authored by Davis King's avatar Davis King

Improved the automatic selction of different SIMD instructions sets in visual studio.

parent 32b0fc91
...@@ -13,10 +13,10 @@ if (NOT TARGET dlib) ...@@ -13,10 +13,10 @@ if (NOT TARGET dlib)
endif() endif()
# Setup some options to allow a user to enable SSE and AVX instruction use. # Setup some options to allow a user to enable SSE and AVX instruction use.
option(USE_SSE4_INSTRUCTIONS "Compile your program with SSE4 instructions" OFF)
option(USE_AVX_INSTRUCTIONS "Compile your program with AVX instructions" OFF)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
option(USE_SSE2_INSTRUCTIONS "Compile your program with SSE2 instructions" OFF) option(USE_SSE2_INSTRUCTIONS "Compile your program with SSE2 instructions" OFF)
option(USE_SSE4_INSTRUCTIONS "Compile your program with SSE4 instructions" OFF)
option(USE_AVX_INSTRUCTIONS "Compile your program with AVX instructions" OFF)
if(USE_AVX_INSTRUCTIONS) if(USE_AVX_INSTRUCTIONS)
add_definitions(-mavx) add_definitions(-mavx)
elseif (USE_SSE4_INSTRUCTIONS) elseif (USE_SSE4_INSTRUCTIONS)
...@@ -24,20 +24,31 @@ if (NOT TARGET dlib) ...@@ -24,20 +24,31 @@ if (NOT TARGET dlib)
elseif(USE_SSE2_INSTRUCTIONS) elseif(USE_SSE2_INSTRUCTIONS)
add_definitions(-msse2) add_definitions(-msse2)
endif() endif()
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") # Visual Studio elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") # else if using Visual Studio
# Use SSE2 by default when using Visual Studio # Use SSE2 by default when using Visual Studio.
option(USE_SSE2_INSTRUCTIONS "Compile your program with SSE2 instructions" ON) option(USE_SSE2_INSTRUCTIONS "Compile your program with SSE2 instructions" ON)
option(USE_SSE4_INSTRUCTIONS "Compile your program with SSE4 instructions" OFF)
option(USE_AVX_INSTRUCTIONS "Compile your program with AVX instructions" OFF)
include(CheckTypeSize)
check_type_size( "void*" SIZE_OF_VOID_PTR)
if(USE_AVX_INSTRUCTIONS) if(USE_AVX_INSTRUCTIONS)
add_definitions(/arch:AVX) add_definitions(/arch:AVX)
elseif (USE_SSE4_INSTRUCTIONS) elseif (USE_SSE4_INSTRUCTIONS)
# There isn't an /arch:SSE4 flag in visual studio. But we can tell # Visual studio doesn't have an /arch:SSE2 flag when building in 64 bit modes.
# dlib to use those instructions anyway with the DLIB_HAVE_SSE3 and # So only give it when we are doing a 32 bit build.
# DLIB_HAVE_SSE41 #defines. if (SIZE_OF_VOID_PTR EQUAL 4)
add_definitions(/arch:SSE2) add_definitions(/arch:SSE2)
endif()
add_definitions(-DDLIB_HAVE_SSE2)
add_definitions(-DDLIB_HAVE_SSE3) add_definitions(-DDLIB_HAVE_SSE3)
add_definitions(-DDLIB_HAVE_SSE41) add_definitions(-DDLIB_HAVE_SSE41)
elseif(USE_SSE2_INSTRUCTIONS) elseif(USE_SSE2_INSTRUCTIONS)
add_definitions(/arch:SSE2) # Visual studio doesn't have an /arch:SSE2 flag when building in 64 bit modes.
# So only give it when we are doing a 32 bit build.
if (SIZE_OF_VOID_PTR EQUAL 4)
add_definitions(/arch:SSE2)
endif()
add_definitions(-DDLIB_HAVE_SSE2)
endif() endif()
endif() endif()
......
...@@ -7,14 +7,15 @@ ...@@ -7,14 +7,15 @@
// figure out which SIMD instructions we can use. // figure out which SIMD instructions we can use.
#ifndef DLIB_DO_NOT_USE_SIMD #ifndef DLIB_DO_NOT_USE_SIMD
#if defined(_MSC_VER) && defined(_M_IX86_FP) #if defined(_MSC_VER)
#if _M_IX86_FP >= 2 #ifdef __AVX__
#define DLIB_HAVE_SSE2
#define DLIB_HAVE_SSE3
#define DLIB_HAVE_SSE41
#define DLIB_HAVE_AVX
#endif
#if defined(_M_IX86_FP) && _M_IX86_FP >= 2 && !defined(DLIB_HAVE_SSE2)
#define DLIB_HAVE_SSE2 #define DLIB_HAVE_SSE2
#ifdef __AVX__
#define DLIB_HAVE_SSE3
#define DLIB_HAVE_SSE41
#define DLIB_HAVE_AVX
#endif
#endif #endif
#else #else
#ifdef __SSE2__ #ifdef __SSE2__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment