Skip to content

Commit ec2ff06

Browse files
committed
finetune: add missing includes
This commit adds the missing includes reported by the include-what-you-use tool (iwyu). Refs: ggml-org#4756 Signed-off-by: Daniel Bevenius <[email protected]>
1 parent 7a9f75c commit ec2ff06

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

examples/finetune/finetune.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#include <cerrno> // for errno
2+
#include <cmath> // for sqrtf
3+
#include <cstdint> // for uint32_t, int64_t, uint8_t, int32_t, SIZE_MAX
4+
#include <cstdio> // for printf, fprintf, snprintf, NULL, stderr, fclose
5+
#include <cstdlib> // for exit, srand
16
#include "ggml.h"
27
#include "ggml-alloc.h"
38
#include "llama.h"

0 commit comments

Comments
 (0)