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 Use 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.edumodule 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 For more information on Julia, please visit website. 
