integrated support for binary16 = 16bit floating point numbers via half.hpp, IEEE 754-based half-precision floating-point library

This commit is contained in:
Mario Fink
2020-02-11 10:57:50 +01:00
parent 899582b0c1
commit 24c7aa4846
7 changed files with 4614 additions and 633 deletions

View File

@@ -4,8 +4,8 @@ RAW = ../raw/
SRC = src/
EXE = eatit
CCC = g++
OPT = -O3 -Wall
CCC = g++ -std=c++11
OPT = -O3 -Wall -mavx -mno-tbm -mf16c -mno-f16c
$(EXE) : $(SRC)main.cpp $(SRC)raweat.hpp $(SRC)half_precision_floating_point.hpp
$(CCC) $(OPT) $< -o $@