🎉 First commit

This commit is contained in:
Nicolas Rojas 2025-05-29 20:26:11 -05:00
commit 3b8d21dde2
Signed by: nicolas
SSH key fingerprint: SHA256:gi4v1tDcXHbV+fkvqqs9b5rkFlo4Q9DHXp90MifkZK0
17 changed files with 571 additions and 0 deletions

20
MatMult/Makefile Normal file
View file

@ -0,0 +1,20 @@
GCC = gcc
oT = -fopenmp -O3
CFLAGS = -lm
oL= Otime.c
BINDIR = ../
PROGS = $(BINDIR)MM1c $(BINDIR)MM1r
all: MM1c MM1r
clean:
$(RM) $(PROGS)
MM1c:
$(GCC) $(oT) $(oL) $@.c -o $(BINDIR)$@ $(CFLAGS)
MM1r:
$(GCC) $(oT) $(oL) $@.c -o $(BINDIR)$@ $(CFLAGS)