AUTH's THMMY "Parallel and distributed systems" course assignments.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

28 строки
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