AUTH's THMMY "Parallel and distributed systems" course assignments.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

28 lignes
758 B

  1. #! /usr/bin/env bash
  2. #SBATCH --partition=batch
  3. #SBATCH --ntasks-per-node=4
  4. #SBATCH --nodes=4
  5. #SBATCH --time=1:00
  6. module load gcc/9.2.0 openmpi/4.0.3
  7. # Note:
  8. # The above versions are matching w/ my system's
  9. # versions, thus making compiling/debugging easier.
  10. # Uncomment the following to compile the project
  11. # Note:
  12. # In order for the MPI to run properly (or to run entirely), we need
  13. # to compile it in hpc using the loaded modules above.
  14. # Note:
  15. # Consider moving this to a separate stage before sbatch the tasks.
  16. # make distbitonic
  17. # make distbubbletonic
  18. # Suppress unused UCX_ROOT warning
  19. export UCX_WARN_UNUSED_ENV_VARS=n
  20. # Suppress CUDA-aware support is disabled warning
  21. export OMPI_MCA_opal_warn_on_missing_libcuda=0
  22. srun ./bin/dist_v05