FP16 added. Split-mixtral improved.

This commit is contained in:
antirez
2023-12-27 15:13:42 +01:00
parent a77a4d061c
commit bd4ecbda94
6 changed files with 144 additions and 8 deletions

5
fp16.h Normal file
View File

@@ -0,0 +1,5 @@
#ifdef FP16_h
#define FP16_h
float from_half(uint16_t h);
uint16_t to_half(float f);
#endif