mpi line with fixed n and p

This commit is contained in:
Fabio Salvini
2016-11-12 18:01:00 +01:00
parent 51e793af96
commit 2111bfbadf
3 changed files with 161 additions and 0 deletions

12
mpi_line/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC=mpicc
CFLAGS=-Wall -lm -std=c99
all: config jacobi_mpi_line.c
${CC} ${CFLAGS} config.o jacobi_mpi_line.c -o jacobi.out
config: ../config/config.c
${CC} -c ${CFLAGS} ../config/config.c
.PHONY: clean
clean:
rm -f *.out *.o