ggml : detect SSSE3 (#2825)
* ggml : add ggml_cpu_has_ssse3 * llama : show SSSE3 in system info
This commit is contained in:
parent
789c8c945a
commit
1591e2e590
3 changed files with 10 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue