#!/bin/bash -l # Name the job #$ -N parallel_python # Join input and output streams #$ -j y # Request enough time #$ -l h_rt=12:00:00 # Request parallel environment #$ -pe omp 4 # Load module(s) module load python3/3.6.5 # Execute the program python par.py