implemented conversion for 16bit floats

This commit is contained in:
Mario Fink
2020-02-10 16:37:20 +00:00
parent f6240a1789
commit 899582b0c1
9 changed files with 3282 additions and 2428 deletions

View File

@@ -7,7 +7,7 @@ EXE = eatit
CCC = g++
OPT = -O3 -Wall
$(EXE) : $(SRC)main.cpp $(SRC)raweat.hpp
$(EXE) : $(SRC)main.cpp $(SRC)raweat.hpp $(SRC)half_precision_floating_point.hpp
$(CCC) $(OPT) $< -o $@
clean :