Files
gguf-tools/fp16.h
2023-12-27 21:22:33 +01:00

8 lines
112 B
C

/* See fp16.c. */
#ifndef FP16_h
#define FP16_h
float from_half(uint16_t h);
uint16_t to_half(float f);
#endif