mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 14:20:31 +01:00
cmake : fix ppc64 check (whisper/0)
ggml-ci
This commit is contained in:
parent
3225008973
commit
09ecbcb596
@ -211,10 +211,13 @@ elseif (CMAKE_OSX_ARCHITECTURES STREQUAL "x86_64" OR CMAKE_GENERATOR_PLATFORM_LW
|
|||||||
endif()
|
endif()
|
||||||
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64")
|
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64")
|
||||||
message(STATUS "PowerPC detected")
|
message(STATUS "PowerPC detected")
|
||||||
execute_process(COMMAND bash -c "grep POWER10 /proc/cpuinfo | head -n 1"
|
execute_process(COMMAND bash -c "grep POWER10 /proc/cpuinfo | head -n 1" OUTPUT_VARIABLE POWER10_M)
|
||||||
OUTPUT_VARIABLE POWER10_M)
|
string(FIND "${POWER10_M}" "POWER10" substring_index)
|
||||||
string(FIND ${POWER10_M} "POWER10" substring_index)
|
if (NOT DEFINED substring_index OR "${substring_index}" STREQUAL "")
|
||||||
if(${substring_index} GREATER_EQUAL 0)
|
set(substring_index -1)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (${substring_index} GREATER_EQUAL 0)
|
||||||
list(APPEND ARCH_FLAGS -mcpu=power10)
|
list(APPEND ARCH_FLAGS -mcpu=power10)
|
||||||
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64le")
|
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64le")
|
||||||
list(APPEND ARCH_FLAGS -mcpu=powerpc64le)
|
list(APPEND ARCH_FLAGS -mcpu=powerpc64le)
|
||||||
|
Loading…
Reference in New Issue
Block a user