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 whether on or off-campus.

    In top menu bar access (globe icon).

    Be sure vpn-groups selected when you connect.

  • ssh your_netid@hpc.kennesaw.edu
  • #!/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

  • qsub julia_submission.pbs
  • For more information on Julia, please visit The Julia Programming Language website.