File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -289,15 +289,19 @@ function(ggml_add_cpu_backend_variant_impl tag_name)
289
289
endif ()
290
290
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64" )
291
291
message (STATUS "PowerPC detected" )
292
- execute_process (COMMAND bash -c "grep POWER /proc/cpuinfo | head -n 1" OUTPUT_VARIABLE POWER_M)
293
- if (${POWER_M} MATCHES "POWER10" )
294
- list (APPEND ARCH_FLAGS -mcpu=power10)
295
- elseif (${POWER_M} MATCHES "POWER9" )
296
- list (APPEND ARCH_FLAGS -mcpu=power9)
297
- elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64le" )
298
- list (APPEND ARCH_FLAGS -mcpu=powerpc64le -mtune=native)
292
+ if (GGML_POWERPC_CPUTYPE)
293
+ list (APPEND ARCH_FLAGS -mcpu=${GGML_POWERPC_CPUTYPE} )
299
294
else ()
300
- list (APPEND ARCH_FLAGS -mcpu=powerpc64 -mtune=native)
295
+ execute_process (COMMAND bash -c "grep POWER /proc/cpuinfo | head -n 1" OUTPUT_VARIABLE POWER_M)
296
+ if (${POWER_M} MATCHES "POWER10" )
297
+ list (APPEND ARCH_FLAGS -mcpu=power10)
298
+ elseif (${POWER_M} MATCHES "POWER9" )
299
+ list (APPEND ARCH_FLAGS -mcpu=power9)
300
+ elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "ppc64le" )
301
+ list (APPEND ARCH_FLAGS -mcpu=powerpc64le -mtune=native)
302
+ else ()
303
+ list (APPEND ARCH_FLAGS -mcpu=powerpc64 -mtune=native)
304
+ endif ()
301
305
endif ()
302
306
elseif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "loongarch64" )
303
307
message (STATUS "loongarch64 detected" )
You can’t perform that action at this time.
0 commit comments