add two avx instructions example & simple clear screen

This commit is contained in:
2020-12-17 17:49:05 +03:00
parent c790bcde1f
commit 1af9716058
4 changed files with 123 additions and 0 deletions

9
avx/Makefile Normal file
View File

@@ -0,0 +1,9 @@
CC=gcc
CFLAGS= -march=native -O3
all: add dotproduct
%: %.c
@echo -e "\t\tCC $<"
$(CC) $(CFLAGS) -o $@ $<