#!/bin/csh #PBS -l walltime=60 #PBS -l ncpus=32 #PBS -o hwinfo.out #PBS -j oe # set up the module command source /usr/share/modules/init/csh source /etc/csh.cshrc.psc #load the papi module module load papi set echo cd ~/papi icc PAPI_hw_info.c $PAPI_INC $PAPI_LIB -o hwinfo ./hwinfo # Run your program.