...
No Format |
---|
qsub -I -l select=1:ncpus=8:mem=12gb,walltime=1:11:00 -q small Once you are on the compute node: module load R/4.0.3 R library(plyr) library(doParallel) cores <- detectCores() cores [1] 12 registerDoParallel(cores=8) fake_func <- function(x) { Sys.sleep(0.1) return(x) } library(microbenchmark) microbenchmark( serial = llply(1:24, fake_func), parallel = llply(1:24, fake_func, .parallel = TRUE), times = 1 ) Unit: milliseconds expr min lq mean median uq max neval serial 2402.7702 2402.7702 2402.7702 2402.7702 2402.7702 2402.7702 1 parallel 320.0491 320.0491 320.0491 320.0491 320.0491 320.0491 1 > |
Create R conda environment (Recommended way on the new cluster) to run R on the new cluster
Another easy way to install R and R packages is to use conda . Here are the steps
No Format |
---|
source /usr/local/bin/s3proxy.sh
module load anaconda3/2024.06
conda create --name myRenv R=4.3.1
source activate myRenv
To install packes like "tidyverse","lubridate","ggplot2", "tmap", "ggmap", "sf", "ggsci", "remotes", "raster", "readxl", "terra"
Simply google with the package name and conda as search strings e.g. tidyverse conda
You will see instructions to install these packages:
conda install r::r-lubridate
conda install r::r-tidyverse
conda install conda-forge::r-ggplot2
conda install conda-forge::r-tmap
conda install conda-forge::r-ggmap
conda install conda-forge::r-sf
conda install conda-forge::r-ggsci
conda install conda-forge::r-remotes
conda install conda-forge::r-raster
conda install conda-forge::r-readxl
conda install conda-forge::r-terra
Here is a sample pbs script:
#!/bin/bash
#PBS -m abe
#PBS -M XXXX@griffithuni.edu.au
#PBS -N MyTest
#PBS -q workq
#PBS -l select=1:ncpus=1:mem=4gb,walltime=01:00:00
module load anaconda3/2024.06
source activate myRenv
module list
cd $PBS_O_WORKDIR
R CMD BATCH '--args a=1 b=c(2,5,6)' test.R test.out
echo "test Done"
echo "Done with job"
|
Reference
1. http://yusung.blogspot.com.au/2009/01/install-jags-and-rjags-in-fedora.html
...