QuickStart - Julia

Julia is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users of other technical computing environments.


Use Global Protect VPN: whether on or off-campus

In top menu bar access (globe icon)
Be sure vpn-groups selected when you connect.

Start an SSH session:

ssh your_netid@hpc.kennesaw.edu

Create your julia_submission.pbs (single node, multiple cores)

#!/bin/bash
#PBS -l nodes=1:ppn=8
#PBS -l walltime=1:30:00
#PBS -j oe
#PBS -m abe
#PBS -M your_email@kennesaw.edu  

module purge

module load julia gurobi

cd $PBS_O_WORKDIR

julia your_julia_gurobi.jl > your_output.txt

exit 0

Submit your script

qsub julia_submission.pbs


For more information on julia, please see http://julialang.org/

©