Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

3 - Running Jobs on the UAMS Cluster 20190521.docx

Att_benchmark.R there is a copy on the hpc at

 /storage/example/hpc101/Att_benchmark.R

Code Block
languagebash
titleR_example.batch
#!/bin/bash

# Name of job
#PBS -N R_Benchmark
# limit to 30 minutes of walltime
#PBS -l walltime=30:00
# Email to notify
#PBS -M EXAMPLE@uams.edu


# load the R module
module load R_base/3.3.3
# Run the benchmark program with Rscript
Rscript Att_benchmark.R

...