parent
19995a1f05
commit
7f716ffae6
|
@ -13,8 +13,8 @@ mpi: main.cpp Matrix.h Solver.h
|
|||
all: seriel mpi
|
||||
|
||||
test: seriel mpi
|
||||
./$(OUT)_seriel 1D 120 1000
|
||||
mpirun -n 4 ./$(OUT)_mpi 2D 120 1000
|
||||
./$(OUT)_seriel 1D 125 1000
|
||||
mpirun -n 4 ./$(OUT)_mpi 2D 125 1000
|
||||
# for script in *.R; do R --vanilla < $${script}; done
|
||||
|
||||
clean:
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
#SBATCH --time=00:10:00
|
||||
#SBATCH -N 1 # Nr. of nodes
|
||||
#SBATCH -n 10 # Total nr. of cores
|
||||
|
||||
DIM=2D
|
||||
resolution=125
|
||||
iterations=10
|
||||
|
||||
mpirun main_mpi $DIM $resolution $iterations
|
Loading…
Reference in New Issue