Skip to content

Quick access

Quick Access Steps:

  1. Request Access: Complete the Turing Account Request Form.
  2. Connect to Turing: Log in via SSH:
    ssh gompei@turing.wpi.edu
    
  3. Write a Job Script: Example SLURM script:
    #!/bin/bash
    #SBATCH --job-name=my_job
    #SBATCH --time=01:00:00
    #SBATCH --mem=4G
    module load python
    python my_script.py
    
  4. Submit the Job:
    sbatch my_job_script.sh
    
  5. View Best Practices There is very important information here on reading/writing files that will help improve the performance of your jobs.