Julia
Julia Programming Language. More information can be found here
Available containers
Name | sha256 | mpi | labels | descripion |
---|---|---|---|---|
Singularity.julia-1.7.2.localimage.sif | 5633c2e63ee748e8e6c06c49a06f237ef5b47d614a7e7c45d6cd59e9ad38a22a | none | none | benchmark |
Running the container
Example invocation of Julia benchmark
cd $TMPDIR
echo -e 'using Pkg;\nPkg.add("LinearAlgebra");\nusing LinearAlgebra;\nw = LinearAlgebra.peakflops(40000); println(w);' > j.jl
singularity -s run -B $TMPDIR -B $PWD:/host_pwd --pwd /host_pwd $PLCR/images/$CONT julia -t $SLURM_NTASKS j.jl
RC=$?
echo "Test completed, rc=$RC"