sync: update ggml

This commit is contained in:
leejet
2024-11-23 13:29:32 +08:00
parent b5f4932696
commit c3eeb669cd
5 changed files with 18 additions and 20 deletions

View File

@@ -22,6 +22,7 @@
#include <unistd.h>
#endif
#include "ggml-cpu.h"
#include "ggml.h"
#include "stable-diffusion.h"
@@ -410,7 +411,6 @@ const char* sd_get_system_info() {
static char buffer[1024];
std::stringstream ss;
ss << "System Info: \n";
ss << " BLAS = " << ggml_cpu_has_blas() << std::endl;
ss << " SSE3 = " << ggml_cpu_has_sse3() << std::endl;
ss << " AVX = " << ggml_cpu_has_avx() << std::endl;
ss << " AVX2 = " << ggml_cpu_has_avx2() << std::endl;