@@ -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 |
@@ -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 | |||
#SBATCH --partition=batch | |||
#SBATCH --nodes=1 | |||
#SBATCH --ntasks-per-node=4 | |||
#SBATCH --cpus-per-task=4 | |||
#SBATCH --time=1:00 | |||
# Use this as following | |||
# $> sbatch <this file> | |||
# $> sbatch -p batch|rome <this file> | |||
# | |||
# NOTE: | |||
# First compile in aristotle with | |||
@@ -26,4 +25,4 @@ 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 24 --perf --validation | |||
srun ./out/distbitonic -q 20 --perf --validation |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |