From 0fbccda615fa0b15b048b5723e5bfb359f95cd9a Mon Sep 17 00:00:00 2001 From: Connor Moore Date: Sat, 25 Apr 2026 17:47:35 -0400 Subject: Initial commit with code and start of report --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8c48932 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +FC = mpiifx +#FFLAGS = -o $(TARGET) -qmkl=sequential +FFLAGS = -o $(TARGET) -qmkl +TARGET = test.x +NWORK = 64 + +all: clean $(TARGET) run + +$(TARGET): main.f90 worker.f90 manager.f90 + $(FC) $(FFLAGS) main.f90 worker.f90 manager.f90 + +clean: + rm -f *.x *.mod eigs + +run: + mpirun ./$(TARGET) -np $(NWORK) + + -- cgit v1.2.3