HW2: RC3 - Batch scripts added
This commit is contained in:
parent
4e7237bd4d
commit
0e44a3062c
15
homework_2/enqueueAll.sh
Executable file
15
homework_2/enqueueAll.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
if [[ $# -lt 2 ]]; then
|
||||||
|
echo "Error: You must pass the directory with the scripts and partition"
|
||||||
|
echo "you want to run to "
|
||||||
|
echo "example $ enqueueAll.sh ./hpc/Q23 batch"
|
||||||
|
echo "example $ enqueueAll.sh ./hpc/Q20 rome"
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enqueue
|
||||||
|
for file in $(ls $1); do
|
||||||
|
echo "sbatch -p $2 --qos=small $file";
|
||||||
|
eval "sbatch -p $2 --qos=small $file";
|
||||||
|
done
|
28
homework_2/hpc/Q20/N1P2T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N1P2T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=2
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
@ -1,13 +1,12 @@
|
|||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
#SBATCH --partition=batch
|
|
||||||
#SBATCH --nodes=1
|
#SBATCH --nodes=1
|
||||||
#SBATCH --ntasks-per-node=4
|
#SBATCH --ntasks-per-node=4
|
||||||
#SBATCH --cpus-per-task=4
|
#SBATCH --cpus-per-task=4
|
||||||
#SBATCH --time=1:00
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
# Use this as following
|
# Use this as following
|
||||||
# $> sbatch <this file>
|
# $> sbatch -p batch|rome <this file>
|
||||||
#
|
#
|
||||||
# NOTE:
|
# NOTE:
|
||||||
# First compile in aristotle with
|
# First compile in aristotle with
|
||||||
@ -26,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n
|
|||||||
# Suppress CUDA-aware support is disabled warning
|
# Suppress CUDA-aware support is disabled warning
|
||||||
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
srun ./out/distbitonic -q 24 --perf --validation
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q20/N2P4T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N2P4T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=2
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q20/N4P16T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N4P16T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=16
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q20/N4P32T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N4P32T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=32
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q20/N4P4T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N4P4T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q20/N4P8T4Q20.sh
Normal file
28
homework_2/hpc/Q20/N4P8T4Q20.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=8
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 20 --perf --validation
|
28
homework_2/hpc/Q23/N1P2T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N1P2T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=2
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N1P4T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N1P4T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N2P4T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N2P4T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=2
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N4P16T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N4P16T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=16
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N4P32T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N4P32T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=32
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N4P4T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N4P4T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q23/N4P8T4Q23.sh
Normal file
28
homework_2/hpc/Q23/N4P8T4Q23.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=8
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 23 --perf --validation
|
28
homework_2/hpc/Q25/N1P2T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N1P2T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=2
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N1P4T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N1P4T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N2P4T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N2P4T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=2
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N4P16T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N4P16T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=16
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N4P32T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N4P32T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=32
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N4P4T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N4P4T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q25/N4P8T4Q25.sh
Normal file
28
homework_2/hpc/Q25/N4P8T4Q25.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=8
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 25 --perf --validation
|
28
homework_2/hpc/Q27/N1P2T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N1P2T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=2
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N1P4T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N1P4T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=1:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N2P4T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N2P4T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=2
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N4P16T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N4P16T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=16
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N4P32T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N4P32T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=32
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=5:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N4P4T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N4P4T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=4
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
28
homework_2/hpc/Q27/N4P8T4Q27.sh
Normal file
28
homework_2/hpc/Q27/N4P8T4Q27.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
#SBATCH --nodes=4
|
||||||
|
#SBATCH --ntasks-per-node=8
|
||||||
|
#SBATCH --cpus-per-task=4
|
||||||
|
#SBATCH --time=2:00
|
||||||
|
|
||||||
|
# Use this as following
|
||||||
|
# $> sbatch -p batch|rome <this file>
|
||||||
|
#
|
||||||
|
# NOTE:
|
||||||
|
# First compile in aristotle with
|
||||||
|
# $> module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# $> make -j hpc-build
|
||||||
|
#
|
||||||
|
|
||||||
|
module load gcc/9.2.0 openmpi/4.0.3
|
||||||
|
# Note:
|
||||||
|
# The above versions are matching w/ my system's
|
||||||
|
# versions, thus making compiling/debugging easier.
|
||||||
|
|
||||||
|
# Suppress unused UCX_ROOT warning
|
||||||
|
export UCX_WARN_UNUSED_ENV_VARS=n
|
||||||
|
|
||||||
|
# Suppress CUDA-aware support is disabled warning
|
||||||
|
export OMPI_MCA_opal_warn_on_missing_libcuda=0
|
||||||
|
|
||||||
|
srun ./out/distbitonic -q 27 --perf --validation
|
Loading…
x
Reference in New Issue
Block a user