Last commit
This commit is contained in:
3
benchmarks/b4/cuda.sh
Normal file
3
benchmarks/b4/cuda.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
../../bin/jacobi_cuda > results/stdout_cuda.txt
|
||||
16
benchmarks/b4/jacobi.conf
Normal file
16
benchmarks/b4/jacobi.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
# Configuration file for the Jacobi project.
|
||||
|
||||
# The size of the matrix (borders excluded).
|
||||
N 10000
|
||||
|
||||
# The value at each border.
|
||||
NORTH 0.0
|
||||
EAST 0.0
|
||||
SOUTH 300.0
|
||||
WEST 0.0
|
||||
|
||||
# The initial value to assign at each internal cell.
|
||||
INIT_VALUE 0.0
|
||||
|
||||
# The threshold that determines the convergence.
|
||||
THRESHOLD 1.0
|
||||
10
benchmarks/b4/mpi_1_1.sh
Normal file
10
benchmarks/b4/mpi_1_1.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J mpi
|
||||
#SBATCH -o results/stdout_mpi_1_1.txt
|
||||
#SBATCH -e results/stderr_mpi_1_1.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=1
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
mpirun ~/JacobiHPC/bin/jacobi_mpi
|
||||
10
benchmarks/b4/mpi_1_10.sh
Normal file
10
benchmarks/b4/mpi_1_10.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J mpi
|
||||
#SBATCH -o results/stdout_mpi_1_10.txt
|
||||
#SBATCH -e results/stderr_mpi_1_10.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=10
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
mpirun ~/JacobiHPC/bin/jacobi_mpi
|
||||
10
benchmarks/b4/mpi_5_10.sh
Normal file
10
benchmarks/b4/mpi_5_10.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J mpi
|
||||
#SBATCH -o results/stdout_mpi_5_10.txt
|
||||
#SBATCH -e results/stderr_mpi_5_10.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 5
|
||||
#SBATCH --tasks-per-node=10
|
||||
#SBATCH --nodelist=c2,c3,c4,c6,c7
|
||||
|
||||
mpirun ~/JacobiHPC/bin/jacobi_mpi
|
||||
12
benchmarks/b4/omp_1.sh
Normal file
12
benchmarks/b4/omp_1.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J omp
|
||||
#SBATCH -o results/stdout_omp_1.txt
|
||||
#SBATCH -e results/stderr_omp_1.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=1
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
export OMP_NUM_THREADS=1
|
||||
|
||||
~/JacobiHPC/bin/jacobi_omp
|
||||
12
benchmarks/b4/omp_10.sh
Normal file
12
benchmarks/b4/omp_10.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J omp
|
||||
#SBATCH -o results/stdout_omp_10.txt
|
||||
#SBATCH -e results/stderr_omp_10.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=1
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
export OMP_NUM_THREADS=10
|
||||
|
||||
~/JacobiHPC/bin/jacobi_omp
|
||||
10
benchmarks/b4/sequential.sh
Normal file
10
benchmarks/b4/sequential.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J sequential
|
||||
#SBATCH -o results/stdout_sequential.txt
|
||||
#SBATCH -e results/stderr_sequential.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=1
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
~/JacobiHPC/bin/jacobi_sequential
|
||||
10
benchmarks/b4/sse.sh
Normal file
10
benchmarks/b4/sse.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#SBATCH -J sse
|
||||
#SBATCH -o results/stdout_sse.txt
|
||||
#SBATCH -e results/stderr_sse.txt
|
||||
#SBATCH -t 00:30:00
|
||||
#SBATCH -N 1
|
||||
#SBATCH --tasks-per-node=1
|
||||
#SBATCH --nodelist=c6
|
||||
|
||||
~/JacobiHPC/bin/jacobi_sse
|
||||
Reference in New Issue
Block a user