I want to use Julia 0.5.0 on a Linux cluster. Running a very simple test script (below) directly onto the terminal is always successful:
sss=repmat([0.0],25);
for i in 1:25 sss[i]=i*2 end
filename="sss.csv"
writecsv(filename,sss)
However, when I send as a qsub via a shell script, I get the following error:
signal (11): Segmentation fault
while loading no file, in expression starting on line 0
signal (11): Segmentation fault
signal (11): Segmentation fault
while loading no file, in expression starting on line 0
while loading no file, in expresswhile loading no file, in expression starting on line 0
while loading no file, in expression starting on line 0
Does anyone know why this might be the case? I’ve been using Julia on windows for a year, but I’m a total Linux novice.
Thanks, Raef