Skip to content

Commit

Permalink
Introduce Simdlib and OpenMP versions in ViSP-third-party.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Nov 3, 2024
1 parent d8ae587 commit 83e0f5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions 3rdparty/simdlib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
project(${SIMD_LIBRARY})

# SIMD_VERSION should math the version set in Simd/SimdVersion.h
set(SIMD_VERSION "4.9.109" PARENT_SCOPE)

vp_include_directories(${CMAKE_CURRENT_SOURCE_DIR})

set(COMMON_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ status(" \\- Use ZLIB:" USE_ZLIB THEN "yes (ver ${ZLIB_VERS
status(" Use OpenCV:" USE_OPENCV THEN "yes (ver ${OpenCV_VERSION})" ELSE "no")
status(" Use stb_image (built-in):" WITH_STBIMAGE THEN "yes (ver ${STBIMAGE_VERSION})" ELSE "no")
status(" Use TinyEXR (built-in):" WITH_TINYEXR THEN "yes (ver ${TINYEXR_VERSION})" ELSE "no")
status(" Use simdlib (built-in):" WITH_SIMDLIB THEN "yes" ELSE "no")
status(" Use simdlib (built-in):" WITH_SIMDLIB THEN "yes (ver ${SIMD_VERSION})" ELSE "no")
status(" Use npz I/O (built-in):" WITH_MINIZ THEN "yes" ELSE "no")
status("")
status(" Real robots: ")
Expand Down Expand Up @@ -1863,10 +1863,10 @@ status(" Use json (nlohmann system):" USE_NLOHMANN_JSON THEN "yes (ver ${nlo
endif()
status("")
status(" Optimization: ")
status(" Use OpenMP:" USE_OPENMP THEN "yes" ELSE "no")
status(" Use OpenMP:" USE_OPENMP THEN "yes (ver ${OpenMP_CXX_VERSION})" ELSE "no")
status(" Use std::thread:" USE_THREADS THEN "yes" ELSE "no")
status(" Use pthread:" USE_PTHREAD THEN "yes" ELSE "no")
status(" Use simdlib (built-in):" WITH_SIMDLIB THEN "yes" ELSE "no")
status(" Use simdlib (built-in):" WITH_SIMDLIB THEN "yes (ver ${SIMD_VERSION})" ELSE "no")
status("")
status(" DNN: ")
status(" Use CUDA Toolkit:" USE_TENSORRT AND CUDA_FOUND THEN "yes (ver ${CUDA_VERSION})" ELSE "no")
Expand All @@ -1875,7 +1875,7 @@ status(" Use TensorRT:" USE_TENSORRT THEN "yes (ver ${TENSORR
# ========================== documentation ==========================
status("")
status(" Documentation: ")
status(" Use doxygen:" DOXYGEN_FOUND THEN "yes" ELSE "no")
status(" Use doxygen:" DOXYGEN_FOUND THEN "yes (ver ${DOXYGEN_VERSION})" ELSE "no")
status(" \\- Use mathjax:" USE_MATHJAX THEN "yes" ELSE "no")

# ========================== samples and tests ==========================
Expand Down

0 comments on commit 83e0f5f

Please sign in to comment.