qsub on PBS doesn't give output -
i trying submit python jobs pbs , printed content output. easy example goes like:
python file test.py:
import time print(time.time())
pbs submit file job_test.pbs:
#!/bin/bash #pbs -l nodes=2:ppn=8,walltime=8:00:00 #pbs -n test #pbs -q gpu module load anaconda/3 torque cuda80 cudnn cd /path-to-the-test.py-program python test.py
and qsub command:
qsub job_test.pbs
since job easy, see status goes q e , c in no time using qstat. problem comes don't see output file should in /path-to-the-test.py-program. tried both setting #pbs -o /path-to-the-test.py-program/output.txt in pbs script , using command qsub -o /path-to-the-test.py-program/output.txt job_test.pbs none of them works. how can right?
Comments
Post a Comment