Files
gguf-tools/fp16.h

8 lines
112 B
C
Raw Normal View History

/* See fp16.c. */
2023-12-27 21:22:33 +01:00
#ifndef FP16_h
2023-12-27 15:13:42 +01:00
#define FP16_h
float from_half(uint16_t h);
uint16_t to_half(float f);
#endif