CXXFLAGS=-mavx2 -mfma -std=c++11 -O1

%: %.cpp common.h
	g++ $(CXXFLAGS) $< -o $@

clean:
	rm -f demo1 demo2 sqrt logistic lengths jolly_jumper
