mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-07-07 17:13:02 +00:00
ggml : detect SSSE3 (#2825)
* ggml : add ggml_cpu_has_ssse3 * llama : show SSSE3 in system info
This commit is contained in:
committed by
GitHub
parent
789c8c945a
commit
1591e2e590
@ -6194,6 +6194,7 @@ const char * llama_print_system_info(void) {
|
||||
s += "WASM_SIMD = " + std::to_string(ggml_cpu_has_wasm_simd()) + " | ";
|
||||
s += "BLAS = " + std::to_string(ggml_cpu_has_blas()) + " | ";
|
||||
s += "SSE3 = " + std::to_string(ggml_cpu_has_sse3()) + " | ";
|
||||
s += "SSSE3 = " + std::to_string(ggml_cpu_has_ssse3()) + " | ";
|
||||
s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
|
||||
|
||||
return s.c_str();
|
||||
|
Reference in New Issue
Block a user