finetune: add missing includes
This commit adds the missing includes reported by the include-what-you-use tool (iwyu). Refs: https://github.com/ggerganov/llama.cpp/pull/4756 Signed-off-by: Daniel Bevenius <daniel.bevenius@gmail.com>
This commit is contained in:
parent
7a9f75c38b
commit
ec2ff06029
1 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
#include <cerrno> // for errno
|
||||
#include <cmath> // for sqrtf
|
||||
#include <cstdint> // for uint32_t, int64_t, uint8_t, int32_t, SIZE_MAX
|
||||
#include <cstdio> // for printf, fprintf, snprintf, NULL, stderr, fclose
|
||||
#include <cstdlib> // for exit, srand
|
||||
#include "ggml.h"
|
||||
#include "ggml-alloc.h"
|
||||
#include "llama.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue