I am trying the simple hello_world example using a script like this (calledMTL_hello.sh): #!/bin/sh #PBS N myjob #PBS -j oe export OMP_NUM_THREADS=16 ./hello_world Then I submit and get no indication that the job ran, like this: [mcls-s15@acano01 ~]$ gcc -fopenmp -o hello_world hello_omp.c [mcls-s15@acano01 ~]$ qsub -l select=1:ncpus=16 /home/mcls/mcls-s15/MTL_hello.sh [mcls-s15@acano01 ~]$ qstat -a Nothing is displayed at all from the qstat command and no output is written. Can you tell me whether there is something amiss with submitting jons? My student reports that this simple script also wasn't working:
#!/bin/sh
#PBS -N testjob
#PBS-o out
#PBS -e err
#PBS -l select=1:ncpus=1:host=acano02
/bin/hostname



