Selaa lähdekoodia

HW2: RC3 - Batch scripts added

tags/v2.0
Christos Choutouridis 2 viikkoa sitten
vanhempi
commit
0e44a3062c
29 muutettua tiedostoa jossa 773 lisäystä ja 3 poistoa
  1. +15
    -0
      homework_2/enqueueAll.sh
  2. +28
    -0
      homework_2/hpc/Q20/N1P2T4Q20.sh
  3. +2
    -3
      homework_2/hpc/Q20/N1P4T4Q20.sh
  4. +28
    -0
      homework_2/hpc/Q20/N2P4T4Q20.sh
  5. +28
    -0
      homework_2/hpc/Q20/N4P16T4Q20.sh
  6. +28
    -0
      homework_2/hpc/Q20/N4P32T4Q20.sh
  7. +28
    -0
      homework_2/hpc/Q20/N4P4T4Q20.sh
  8. +28
    -0
      homework_2/hpc/Q20/N4P8T4Q20.sh
  9. +28
    -0
      homework_2/hpc/Q23/N1P2T4Q23.sh
  10. +28
    -0
      homework_2/hpc/Q23/N1P4T4Q23.sh
  11. +28
    -0
      homework_2/hpc/Q23/N2P4T4Q23.sh
  12. +28
    -0
      homework_2/hpc/Q23/N4P16T4Q23.sh
  13. +28
    -0
      homework_2/hpc/Q23/N4P32T4Q23.sh
  14. +28
    -0
      homework_2/hpc/Q23/N4P4T4Q23.sh
  15. +28
    -0
      homework_2/hpc/Q23/N4P8T4Q23.sh
  16. +28
    -0
      homework_2/hpc/Q25/N1P2T4Q25.sh
  17. +28
    -0
      homework_2/hpc/Q25/N1P4T4Q25.sh
  18. +28
    -0
      homework_2/hpc/Q25/N2P4T4Q25.sh
  19. +28
    -0
      homework_2/hpc/Q25/N4P16T4Q25.sh
  20. +28
    -0
      homework_2/hpc/Q25/N4P32T4Q25.sh
  21. +28
    -0
      homework_2/hpc/Q25/N4P4T4Q25.sh
  22. +28
    -0
      homework_2/hpc/Q25/N4P8T4Q25.sh
  23. +28
    -0
      homework_2/hpc/Q27/N1P2T4Q27.sh
  24. +28
    -0
      homework_2/hpc/Q27/N1P4T4Q27.sh
  25. +28
    -0
      homework_2/hpc/Q27/N2P4T4Q27.sh
  26. +28
    -0
      homework_2/hpc/Q27/N4P16T4Q27.sh
  27. +28
    -0
      homework_2/hpc/Q27/N4P32T4Q27.sh
  28. +28
    -0
      homework_2/hpc/Q27/N4P4T4Q27.sh
  29. +28
    -0
      homework_2/hpc/Q27/N4P8T4Q27.sh

+ 15
- 0
homework_2/enqueueAll.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q20/N1P2T4Q20.sh Näytä tiedosto

@@ -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

homework_2/hpc/btN1P4T4Q24.sh → homework_2/hpc/Q20/N1P4T4Q20.sh Näytä tiedosto

@@ -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

+ 28
- 0
homework_2/hpc/Q20/N2P4T4Q20.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q20/N4P16T4Q20.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q20/N4P32T4Q20.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q20/N4P4T4Q20.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q20/N4P8T4Q20.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N1P2T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N1P4T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N2P4T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N4P16T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N4P32T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N4P4T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q23/N4P8T4Q23.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N1P2T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N1P4T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N2P4T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N4P16T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N4P32T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N4P4T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q25/N4P8T4Q25.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N1P2T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N1P4T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N2P4T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N4P16T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N4P32T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N4P4T4Q27.sh Näytä tiedosto

@@ -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
- 0
homework_2/hpc/Q27/N4P8T4Q27.sh Näytä tiedosto

@@ -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…
Peruuta
Tallenna