#!/bin/bash -l # Give the job time limit #$ -l h_rt 12:00:00 # Request 1 core. This will set NSLOTS=1 #$ -pe omp 1 # Join standard error and output files #$ -j y # Give the job a name #$ -N CPU_tf_job # Project Name #$ -P project_name # load modules module load python3/3.6.5 module load tensorflow/1.13.1 # Run the Python script python tensorflow_code.py