-
How to apply for an account on the HT-Cluster
-
To be able to use the HT-Cluster one has:
- to have an IMT account and an AFS home
- to be member of a special group
Send an email to your local support to apply for using the HT-cluster.
For example people working in the computer science faculty send an email to irb-support(at)upb.de.
Category: HTC -
How to create a Torque job script
-
A torque job script is a shell script consisting of Torque directives (#PBS ...) and the job itself.
You find more examples on the frontend in /opt/pc2/examples or in the Torque user-guide.
This is a small example:
#! /bin/sh
#PBS -j oe
#PBS -W stagein=job1@pc2htfe1:job1
#PBS -W stageout=job1@pc2htfe1:job1-result
#PBS –M devil(at)hell.org
#PBS -m ae
cd $HOME/job1
echo "tmpdir is $TMPDIR"
printenv | sort
hostname >> mylog.log
matlab -h >> mylog.log
exit $?
Category: HTC




Print