Hi,
I am trying to run Julia on SlurmCluster,
my data is in my current directory on the Cluster.
the julia code Id like to run (main.jl)
using DelimitedFiles
mme = readdlm(“mme.txt”)
rhs = readdlm(“rhs.txt”)
b = mme/rhs
writedlm(“b.txt”, b)
The Job script I submitted
#!/bin/bash
#SBATCH --ntasks=1 # 1 core(CPU)
#SBATCH --nodes=1 # Use 1 node
#SBATCH --job-name=wubujob # sensible name for the job
#SBATCH --mem=30G # Default memory per CPU is 3GB.
#SBATCH --partition=smallmem # Use the verysmallmem-partition for jobs requiring < 10 GB RAM.
#SBATCH --mail-user=mailname@nmbu.no # Email me when job is done.
#SBATCH --mail-type=ALL
julia main.jl
after submitting the job script I got empty (slurm jobID .out) file.
I am wondering why I got empty (slurm jobID.out) file?
is there anything that I did wrong?
many thanks in advance