File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change 1616
1717#include < stdint.h>
1818#include < stddef.h>
19-
20- #define FOSSIL_JELLYFISH_MAX_MEM 128
21- #define FOSSIL_JELLYFISH_HASH_SIZE 32
22- #define FOSSIL_JELLYFISH_INPUT_SIZE 64
23- #define FOSSIL_JELLYFISH_OUTPUT_SIZE 64
24- #define FOSSIL_JELLYFISH_MAX_MODELS 32
25- #define FOSSIL_JELLYFISH_MAX_TOKENS 16
26- #define FOSSIL_JELLYFISH_TOKEN_SIZE 16
27- #define FOSSIL_JELLYFISH_MAX_MODEL_FILES 16
28- #define FOSSIL_JELLYFISH_MAX_TAGS 8
19+ #include < stdbool.h>
20+
21+ enum {
22+ FOSSIL_JELLYFISH_MAX_MEM = 128 ,
23+ FOSSIL_JELLYFISH_HASH_SIZE = 32 ,
24+ FOSSIL_JELLYFISH_INPUT_SIZE = 64 ,
25+ FOSSIL_JELLYFISH_OUTPUT_SIZE = 64 ,
26+ FOSSIL_JELLYFISH_MAX_MODELS = 32 ,
27+ FOSSIL_JELLYFISH_MAX_TOKENS = 16 ,
28+ FOSSIL_JELLYFISH_TOKEN_SIZE = 16 ,
29+ FOSSIL_JELLYFISH_MAX_MODEL_FILES = 16 ,
30+ FOSSIL_JELLYFISH_MAX_TAGS = 8
31+ };
2932
3033#ifdef __cplusplus
3134extern " C"
You can’t perform that action at this time.
0 commit comments