# # CheckAVX2Support.cmake # # # The MIT License # # Copyright (c) 2018-2020 TileDB, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # This file defines a function to detect toolchain support for AVX2. # include(CheckCXXSourceRuns) include(CMakePushCheckState) # # Tries to build and run an AVX2 program with the given compiler flag. # If successful, sets cache variable HAVE_AVX2 to 1. # function (CheckAVX2Flag FLAG) cmake_push_check_state() set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${FLAG}") unset(HAVE_AVX2 CACHE) check_cxx_source_runs(" #include int main() { __m256i packed = _mm256_set_epi32(-1, -2, -3, -4, -5, -6, -7, -8); __m256i absolute_values = _mm256_abs_epi32(packed); return 0; }" HAVE_AVX2 ) cmake_pop_check_state() endfunction() # # Determines if AVX2 is available. # # This function sets two variables in the cache: # COMPILER_SUPPORTS_AVX2 - Set to true if the compiler supports AVX2. # COMPILER_AVX2_FLAG - Set to the appropriate flag to enable AVX2. # function (CheckAVX2Support) # Check for cached variable. if (DEFINED COMPILER_SUPPORTS_AVX2) return() endif() if (MSVC) CheckAVX2Flag(/arch:AVX2) if (HAVE_AVX2) set(COMPILER_SUPPORTS_AVX2 TRUE CACHE BOOL "True if the compiler supports AVX2.") set(COMPILER_AVX2_FLAG "/arch:AVX2" CACHE STRING "Compiler flag for AVX2 support.") return() endif() else() CheckAVX2Flag(-mavx2) if (HAVE_AVX2) set(COMPILER_SUPPORTS_AVX2 TRUE CACHE BOOL "True if the compiler supports AVX2.") set(COMPILER_AVX2_FLAG "-mavx2" CACHE STRING "Compiler flag for AVX2 support.") return() endif() endif() unset(HAVE_AVX2 CACHE) endfunction()