Skip to content

Commit

Permalink
Merge pull request #162 from K-os/gh_update
Browse files Browse the repository at this point in the history
SIMDE bugfix & threading optimizations
  • Loading branch information
adamjw24 authored Jan 18, 2024
2 parents bbc0ed4 + e31e9d3 commit cdc566c
Show file tree
Hide file tree
Showing 10 changed files with 477 additions and 345 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ list( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" )
message( STATUS "CMAKE_MODULE_PATH: updating module path to: ${CMAKE_MODULE_PATH}" )

set( VVDEC_ARM_SIMD_DEFAULT FALSE )
if( "${CMAKE_SYSTEM_PROCESSOR}" MATCHES "aarch64\|arm"
if( ( "${CMAKE_SYSTEM_PROCESSOR}" MATCHES "aarch64\|arm"
OR "${CMAKE_CXX_COMPILER}" MATCHES "aarch64\|arm"
OR "${CMAKE_OSX_ARCHITECTURES}" MATCHES "arm64\|armv" )
AND NOT "${CMAKE_OSX_ARCHITECTURES}" MATCHES "x86\|x64" )
set( VVDEC_ARM_SIMD_DEFAULT TRUE )
endif()

Expand Down
Loading

0 comments on commit cdc566c

Please sign in to comment.