8000 MSVC instruction detection (fixed up #809) by netrunnereve · Pull Request #3923 · ggml-org/llama.cpp · GitHub
[go: up one dir, main page]

Skip to content

MSVC instruction detection (fixed up #809) #3923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Nov 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update FindSIMD.cmake
  • Loading branch information
netrunnereve authored Nov 3, 2023
commit c3b0af424cfba9b8566e98ae7d7cd9447b3beeb1
4 changes: 2 additions & 2 deletions cmake/FindSIMD.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ macro(check_sse type flags)
endif()
endforeach()
set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE})

if (NOT ${type}_FOUND)
set(${type}_FOUND FALSE CACHE BOOL "${type} support")
set(${type}_FLAGS "" CACHE STRING "${type} flags")
endif()

mark_as_advanced(${type}_FOUND ${type}_FLAGS)
endmacro()

Expand Down
0