We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca8fa3b commit 1caf0c4Copy full SHA for 1caf0c4
llama.cpp
@@ -580,9 +580,9 @@ static inline void * llama_host_malloc(size_t n) {
580
#elif GGML_USE_METAL
581
return ggml_metal_host_malloc(n);
582
#elif GGML_USE_CPU_HBM
583
- return hbw_malloc(n)
+ return hbw_malloc(n);
584
#else
585
- return malloc(n)
+ return malloc(n);
586
#endif
587
}
588
@@ -596,9 +596,9 @@ static inline void llama_host_free(void * ptr) {
596
597
return ggml_metal_host_free(ptr);
598
599
- return hbw_free(ptr)
+ return hbw_free(ptr);
600
601
- return free(ptr)
+ return free(ptr);
602
603
604
0 commit comments