This training session will cover the following topics:
+
+
System capabilities and hardware
+
+
Getting access to the system - FCA, condo, ICA
+
Savio computing nodes
+
Disk space options (home, scratch, condo storage)
+
+
Logging in, data transfer, and software
+
+
Login nodes, compute nodes, and DTN nodes
+
Logging in
+
Data transfer
+
+
SCP/SFTP
+
Globus
+
Box
+
bDrive (Google drive)
+
+
Software modules
+
+
Submitting and monitoring jobs
+
+
Acounts and partitions
+
Basic job submission
+
Parallel jobs
+
Interactive jobs
+
Low-priority queue
+
HTC jobs
+
Monitoring jobs and cluster status
+
+
Basic use of standard software: Python and R
+
+
Jupyter notebooks
+
+
More information
+
+
How to get additional help
+
Upcoming events
+
+
+
System capabilities and hardware
+
+
Savio is a >380-node, >8000-core Linux cluster rated at >300 peak teraFLOPS.
+
about 174 compute nodes provided by the institution for general access
+
about 211 compute nodes contributed by researchers in the Condo program
+
+
Getting access to the system - FCA and condo
+
+
All regular Berkeley faculty can request 300,000 service units (roughly core-hours) per year through the Faculty Computing Allowance (FCA)
+
Researchers can also purchase nodes for their own priority access and gain access to the shared Savio infrastructure and to the ability to burst to additional nodes through the condo cluster program
Faculty/principal investigators can allow researchers working with them to get user accounts with access to the FCA or condo resources available to the faculty member.
The nodes are divided into several pools, called partitions. These partitions have different restrictions and costs associated with them (see the Scheduler Configuration section of this document). Any job you submit must be submitted to a partition to which you have access.
+
Disk space options (home, scratch, project, condo storage)
When reading/writing data to/from disk, unless the amount of data is small, please put the data in your scratch space at /global/scratch/SAVIO_USERNAME. The system is set up so that disk access for all users is optimized when users are doing input/output (I/O) off of scratch rather than off of their home directories. Doing I/O with files on your home directory can impact the ability of others to access their files on the filesystem.
+
Large amounts of disk space is available for purchase from the condo storage offering. The minimum purchase is about $7,000, which provides roughly 25 TB for five years.
+
Login nodes, compute nodes, and DTN nodes
+
Savio has a few different kinds of nodes:
+
+
login nodes: for login and non-intensive interactive work such as job submission and monitoring, basic compilation, managing your disk space
+
data transfer nodes: for transferring data to/from Savio
+
compute nodes: for computational tasks
+
+
+
+
+
Logging in
+
To login, you need to have software on your own machine that gives you access to a UNIX terminal (command-line) session. These come built-in with Mac (see Applications -> Utilities -> Terminal). For Windows, some options include PuTTY.
+
You also need to set up your smartphone or tablet with Google Authenticator to generate one-time passwords for you.
Then enter XXXXXYYYYYY where XXXXXX is your PIN and YYYYYY is the one-time password. YYYYYY will be shown when you open your Google authenticator app on your phone/tablet.
+
One can then navigate around and get information using standard UNIX commands such as ls, cd, du, df, etc.
+
If you want to be able to open programs with graphical user interfaces:
+
ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+
To display the graphical windows on your local machine, you'll need X server software on your own machine to manage the graphical windows. For Windows, your options include eXceed or Xming and for Mac, there is XQuartz.
+
Data transfer with examples to/from laptop, Box, Google Drive, AWS
+
Let's see how we would transfer files/data to/from Savio using a few different approaches.
+
Data transfer: SCP/SFTP
+
We can use the scp and sftp protocols to transfer files.
+
You need to use the Savio data transfer node, dtn.brc.berkeley.edu. The file bayArea.csv is too large to store on Github; you can obtain it here.
+
Linux/Mac:
+
# to Savio, while on your local machine
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/.
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/data/newName.csv
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:/global/scratch/paciorek/.
+
+# from Savio, while on your local machine
+scp paciorek@dtn.brc.berkeley.edu:~/data/newName.csv ~/Desktop/.
+
If you can ssh to your local machine or want to transfer files to other systems on to which you can ssh, you can login to the dtn node to execute the scp commands:
If you're already connected to a Savio login node, you can use ssh dtn to login to the dtn.
+
One program you can use with Windows is WinSCP, and a multi-platform program for doing transfers via SFTP is FileZilla. After logging in, you'll see windows for the Savio filesystem and your local filesystem on your machine. You can drag files back and forth.
+
You can package multiple files (including directory structure) together using tar:
+
tar -cvzf files.tgz dir_to_zip
+# to untar later:
+tar -xvzf files.tgz
+
Data transfer: Globus
+
You can use Globus Connect to transfer data data to/from Savio (and between other resources) quickly and unattended. This is a better choice for large transfers. Here are some instructions.
+
Globus transfers data between endpoints. Possible endpoints include: Savio, your laptop or desktop, NERSC, and XSEDE, among others.
+
Savio's endpoint is named ucb#brc.
+
If you are transferring to/from your laptop, you'll need
+
+
Globus Connect Personal set up,
+
your machine established as an endpoint, and
+
Globus Connect Pesonal actively running on your machine. At that point you can proceed as below.
+
+
To transfer files, you open Globus at globus.org and authenticate to the endpoints you want to transfer between. This means that you only need to authenticate once, whereas you might need to authenticate multiple times with scp and sftp. You can then start a transfer and it will proceed in the background, including restarting if interrupted.
+
Globus also provides a command line interface that will allow you to do transfers programmatically, such that a transfer could be embedded in a workflow script.
+
Data transfer: Box
+
Box provides unlimited, free, secured, and encrypted content storage of files with a maximum file size of 15 Gb to Berkeley affiliates. So it's a good option for backup and long-term storage.
+
You can move files between Box and your laptop using the Box Sync app. And you can interact with Box via a web browser at http://box.berkeley.edu.
lpwd # on Savio
+ls # on box
+!ls # on Savio
+mkdir workshops
+cd workshops # on box
+lcd savio-training-intro-2017 # on savio
+put parallel-multi.R # savio to box
+get zotero.sqlite
+
One additional command that can be quite useful is mirror, which lets you copy an entire directory to/from Box.
+
# to upload a directory from Savio to Box
+mirror -R mydir
+# to download a directory from Box to Savio
+mirror mydir .
+
Be careful, because it's fairly easy to wipe out files or directories on Box.
+
Finally you can set up special purpose accounts (Berkeley SPA) so files are owned at a project level rather than by individuals.
+
For more ambitious users, Box has a Python-based SDK that can be used to write scripts for file transfers. For more information on how to do this, check out the BoxAuthenticationBootstrap.ipynb and TransferFilesFromBoxToSavioScratch.ipynb from BRC's cyberinfrastructure engineer on GitHub
+
BRC is working (long-term) on making Globus available for transfer to/from Box, but it's not available yet.
+
Data transfer: bDrive (Google Drive)
+
bDrive provides unlimited, free, secured, and encrypted content storage of files with a maximum file size of 5 Tb to Berkeley affiliates.
+
You can move files to and from your laptop using the Google Drive app.
+
There are also some third-party tools for copying files to/from Google Drive, though I've found them to be a bit klunky. This is why we recommend using Box for workflows at this point. However, BRC is also working on making Globus available for transfer to/from bDrive, though it's not available yet.
+
Software modules
+
A lot of software is available on Savio but needs to be loaded from the relevant software module before you can use it.
+
module list # what's loaded?
+module avail # what's available
+
One thing that tricks people is that the modules are arranged in a hierarchical (nested) fashion, so you only see some of the modules as being available after you load the parent module. Here's how we see the Python packages that are available.
Note that once Savio switches to the SL7 operating system circa December, all Python and R packages will be directly available as soon as either the Python or R module is loaded.
+
Similarly, we can see that linear algebra, FFT, and HDF5/NetCDF software is available only after loading either the intel or gcc modules.
All computations are done by submitting jobs to the scheduling software that manages jobs on the cluster, called SLURM.
+
When submitting a job, the main things you need to indicate are the project account you are using (in some cases you might have access to multiple accounts such as an FCA and a condo) and the partition.
+
You can see what accounts you have access to and which partitions within those accounts as follows:
+
sacctmgr -p show associations user=SAVIO_USERNAME
+
Here's an example of the output for a user who has access to an FCA, a condo, and a special partner account:
If you are part of a condo, you'll notice that you have low-priority access to certain partitions. For example I am part of the statistics condo co_stat, which owns some Savio2 nodes and therefore I have normal access to those, but I can also burst beyond the condo and use other partitions at low-priority (see below).
+
In contrast, through my FCA, I have access to the savio, savio2, and big memory partitions.
+
Submitting a batch job
+
Let's see how to submit a simple job. If your job will only use the resources on a single node, you can do the following.
+
Here's an example job script that I'll run. You'll need to modify the --account value and possibly the --partition value.
MaxRSS will show the maximum amount of memory that the job used in kilobytes.
+
Note that except for the savio2_htc and savio2_gpu partitions, all jobs are given exclusive access to the entire node or nodes assigned to the job (and your account is charged for all of the cores on the node(s).
+
Parallel job submission
+
If you are submitting a job that uses multiple nodes, you'll need to carefully specify the resources you need. The key flags for use in your job script are:
+
+
--nodes (or -N): indicates the number of nodes to use
+
--ntasks-per-node: indicates the number of tasks (i.e., processes) one wants to run on each node
+
--cpus-per-task (or -c): indicates the number of cpus to be used for each task
+
+
In addition, in some cases it can make sense to use the --ntasks (or -n) option to indicate the total number of tasks and let the scheduler determine how many nodes and tasks per node are needed. In general --cpus-per-task will be 1 except when running threaded code.
+
Here's an example job script for a job that uses MPI for parallelizing over multiple nodes:
+
#!/bin/bash
+ # Job name:
+ #SBATCH --job-name=test
+ #
+ # Account:
+ #SBATCH --account=account_name
+ #
+ # Partition:
+ #SBATCH --partition=partition_name
+ #
+ # Number of MPI tasks needed for use case (example):
+ #SBATCH --ntasks=40
+ #
+ # Processors per task:
+ #SBATCH --cpus-per-task=1
+ #
+ # Wall clock limit:
+ #SBATCH --time=00:00:30
+ #
+ ## Command(s) to run (example):
+ module load intel openmpi
+ mpirun ./a.out
+
When you write your code, you may need to specify information about the number of cores to use. SLURM will provide a variety of variables that you can use in your code so that it adapts to the resources you have requested rather than being hard-coded.
+
Here are some of the variables that may be useful: SLURM_NTASKS, SLURM_CPUS_PER_TASK, SLURM_NODELIST, SLURM_NNODES.
+
Some common paradigms are:
+
+
MPI jobs that use one CPU per task for each of n tasks
+
openMP/threaded jobs that use c CPUs (on one node) for one task
+
hybrid MPI+threaded jobs that use c CPUs for each of n tasks
+
+
There are lots more examples of job submission scripts for different kinds of parallelization (multi-node (MPI), multi-core (openMP), hybrid, etc.) here.
+
Interactive jobs
+
You can also do work interactively.
+
For this, you may want to have used the -Y flag to ssh if you are running software with a GUI such as MATLAB.
+
# ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+srun -A co_stat -p savio2 --nodes=1 -t 10:0 --pty bash
+# now execute on the compute node:
+module load matlab
+matlab
+
Low-priority queue
+
Condo users have access to the broader compute resource that is limited only by the size of partitions, under the savio_lowprio QoS (queue). However this QoS does not get a priority as high as the general QoSs, such as savio_normal and savio_debug, or all the condo QoSs, and it is subject to preemption when all the other QoSs become busy.
Suppose I wanted to burst beyond the Statistics condo to run on 20 nodes. I'll illustrate here with an interactive job though usually this would be for a batch job.
+
srun -A co_stat -p savio2 --qos=savio_lowprio --nodes=20 -t 10:0 --pty bash
+## now look at environment variables to see my job can access 20 nodes:
+env | grep SLURM
+
HTC jobs
+
There is a partition called the HTC partition that allows you to request cores individually rather than an entire node at a time. The nodes in this partition are faster than the other nodes.
+
srun -A co_stat -p savio2_htc --cpus-per-task=2 -t 10:0 --pty bash
+## we can look at environment variables to verify our two cores
+env | grep SLURM
+module load python/3.2.3 numpy
+python3 calc.py >& calc.out &
+top
+
Alternatives to the HTC partition for collections of serial jobs
+
You may have many serial jobs to run. It may be more cost-effective to collect those jobs together and run them across multiple cores on one or more nodes.
+
Here are some options:
+
+
using Savio's HT Helper tool to run many computational tasks (e.g., thousands of simulations, scanning tens of thousands of parameter values, etc.) as part of single Savio job submission
Let's see a basic example of doing an analysis in Python across multiple cores on multiple nodes. We'll use the airline departure data in bayArea.csv.
+
Here we'll use IPython for parallel computing. The example is a bit contrived in that a lot of the time is spent moving data around rather than doing computation, but it should illustrate how to do a few things.
+
First we'll install a Python package not already available as a module.
+
# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+# install Python package
+module unload python
+module load python/2.7.8
+module load pip
+# trial and error to realize which package dependencies available in modules...
+module load numpy scipy six pandas pytz
+pip install --user statsmodels
+
Now we'll start up an interactive session, though often this sort of thing would be done via a batch job.
Here's our Python code (also found in parallel.py) for doing an analysis across multiple strata/subsets of the dataset in parallel. Note that the 'load_balanced_view' business is so that the computations are done in a load-balanced fashion, which is important for tasks that take different amounts of time to complete.
+
from IPython.parallel import Client
+c = Client()
+c.ids
+
+dview = c[:]
+dview.block = True
+dview.apply(lambda : "Hello, World")
+
+lview = c.load_balanced_view()
+lview.block = True
+
+import pandas
+dat = pandas.read_csv('bayArea.csv', header = None)
+dat.columns = ('Year','Month','DayofMonth','DayOfWeek','DepTime',
+'CRSDepTime','ArrTime','CRSArrTime','UniqueCarrier','FlightNum',
+'TailNum','ActualElapsedTime','CRSElapsedTime','AirTime','ArrDelay',
+'DepDelay','Origin','Dest','Distance','TaxiIn','TaxiOut','Cancelled',
+'CancellationCode','Diverted','CarrierDelay','WeatherDelay',
+'NASDelay','SecurityDelay','LateAircraftDelay')
+
+dview.execute('import statsmodels.api as sm')
+
+dat2 = dat.loc[:, ('DepDelay','Year','Dest','Origin')]
+dests = dat2.Dest.unique()
+
+mydict = dict(dat2 = dat2, dests = dests)
+dview.push(mydict)
+
+def f(id):
+ sub = dat2.loc[dat2.Dest == dests[id],:]
+ sub = sm.add_constant(sub)
+ model = sm.OLS(sub.DepDelay, sub.loc[:,('const','Year')])
+ results = model.fit()
+ return results.params
+
+import time
+time.time()
+parallel_result = lview.map(f, range(len(dests)))
+#result = map(f, range(len(dests)))
+time.time()
+
+# some NaN values because all 'Year' values are the same for some destinations
+
+parallel_result
+
And we'll stop our cluster.
+
ipcluster stop
+
Example use of standard software: R
+
Let's see a basic example of doing an analysis in R across multiple cores on multiple nodes. We'll use the airline departure data in bayArea.csv.
+
We'll do this interactively though often this sort of thing would be done via a batch job.
+
# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+module load r Rmpi
+Rscript -e "install.packages('doMPI', repos = 'http://cran.cnr.berkeley.edu',
+ lib = '/global/home/users/paciorek/R/x86_64-pc-linux-gnu-library/3.2')"
+
+srun -A co_stat -p savio2 --nodes=3 --ntasks-per-node=24 -t 30:0 --pty bash
+module load gcc openmpi r Rmpi
+mpirun R CMD BATCH --no-save parallel-multi.R parallel-multi.Rout &
+
Now here's the R code (see parallel-multi.R) we're running:
+
library(doMPI)
+
+cl = startMPIcluster() # by default will start one fewer slave
+registerDoMPI(cl)
+clusterSize(cl) # just to check
+
+dat <- read.csv('/global/scratch/paciorek/bayArea.csv', header = FALSE,
+ stringsAsFactors = FALSE)
+names(dat)[16:18] <- c('delay', 'origin', 'dest')
+table(dat$dest)
+
+destVals <- unique(dat$dest)
+
+# restrict to only columns we need to reduce copying time
+dat2 <- subset(dat, select = c('delay', 'origin', 'dest'))
+
+# some overhead in copying 'dat2' to worker processes...
+results <- foreach(destVal = destVals) %dopar% {
+ sub <- subset(dat2, dest == destVal)
+ summary(sub$delay)
+}
+
+
+results
+
+closeCluster(cl)
+mpi.quit()
+
If you just want to parallelize within a node:
+
srun -A co_stat -p savio2 --nodes=1 -t 30:0 --pty bash
+module load r
+R CMD BATCH --no-save parallel-one.R parallel-one.Rout &
+
Now here's the R code (see parallel-one.R) we're running:
+
+
diff --git a/intro.md b/intro.md
new file mode 100644
index 0000000..5c30d1b
--- /dev/null
+++ b/intro.md
@@ -0,0 +1,686 @@
+% Savio introductory training: Basic usage of the Berkeley Savio high-performance computing cluster
+% September 18, 2018
+% Kunal Mishra and Chris Paciorek
+
+
+# Introduction
+
+We'll do this mostly as a demonstration. We encourage you to login to your account and try out the various examples yourself as we go through them.
+
+Much of this material is based on the extensive Savio documention we have prepared and continue to prepare, available at [http://research-it.berkeley.edu/services/high-performance-computing](http://research-it.berkeley.edu/services/high-performance-computing).
+
+The materials for this tutorial are available using git at [https://github.com/ucberkeley/savio-training-intro-2017](https://github.com/ucberkeley/savio-training-intro-2017) or simply as a [zip file](https://github.com/ucberkeley/savio-training-intro-2017/archive/master.zip).
+
+# Outline
+
+This training session will cover the following topics:
+
+ - System capabilities and hardware
+ - Getting access to the system - FCA, condo, ICA
+ - Savio computing nodes
+ - Disk space options (home, scratch, condo storage)
+ - Logging in, data transfer, and software
+ - Login nodes, compute nodes, and DTN nodes
+ - Logging in
+ - Data transfer
+ - SCP/SFTP
+ - Globus
+ - Box
+ - bDrive (Google drive)
+ - Software modules
+ - Submitting and monitoring jobs
+ - Acounts and partitions
+ - Basic job submission
+ - Parallel jobs
+ - Interactive jobs
+ - Low-priority queue
+ - HTC jobs
+ - Monitoring jobs and cluster status
+ - Basic use of standard software: Python and R
+ - Jupyter notebooks
+ - Dask for parallelization in Python
+ - More information
+ - How to get additional help
+ - Upcoming events
+
+
+# System capabilities and hardware
+
+- Savio is a >380-node, >8000-core Linux cluster rated at >300 peak teraFLOPS.
+ - about 174 compute nodes provided by the institution for general access
+ - about 211 compute nodes contributed by researchers in the Condo program
+
+
+# Getting access to the system - FCA and condo
+
+- All regular Berkeley faculty can request 300,000 service units (roughly core-hours) per year through the [Faculty Computing Allowance (FCA)](http://research-it.berkeley.edu/services/high-performance-computing/faculty-computing-allowance)
+- Researchers can also purchase nodes for their own priority access and gain access to the shared Savio infrastructure and to the ability to *burst* to additional nodes through the [condo cluster program](http://research-it.berkeley.edu/services/high-performance-computing/condo-cluster-program)
+- Instructors can request an [Instructional Computing Allowance (ICA)](http://research-it.berkeley.edu/programs/berkeley-research-computing/instructional-computing-allowance).
+
+Faculty/principal investigators can allow researchers working with them to get user accounts with access to the FCA or condo resources available to the faculty member.
+
+# Savio computing nodes
+
+Let's take a look at the hardware specifications of the computing nodes on the cluster [(see the *Hardware Configuration* section of this document)](http://research-it.berkeley.edu/services/high-performance-computing/user-guide/savio-user-guide).
+
+The nodes are divided into several pools, called partitions. These partitions have different restrictions and costs associated with them [(see the *Scheduler Configuration* section of this document)](http://research-it.berkeley.edu/services/high-performance-computing/user-guide/savio-user-guide). Any job you submit must be submitted to a partition to which you have access.
+
+# Disk space options (home, scratch, project, condo storage)
+
+You have access to the following disk space, described [here in the *Storage and Backup* section](http://research-it.berkeley.edu/services/high-performance-computing/user-guide/savio-user-guide).
+
+When reading/writing data to/from disk, unless the amount of data is small, please put the data in your scratch space at `/global/scratch/SAVIO_USERNAME`. The system is set up so that disk access for all users is optimized when users are doing input/output (I/O) off of scratch rather than off of their home directories. Doing I/O with files on your home directory can impact the ability of others to access their files on the filesystem.
+
+Large amounts of disk space is available for purchase from the [*condo storage* offering](http://research-it.berkeley.edu/services/high-performance-computing/brc-condo-storage-service-savio). The minimum purchase is about $7,000, which provides roughly 25 TB for five years.
+
+
+# Login nodes, compute nodes, and DTN nodes
+
+Savio has a few different kinds of nodes:
+
+ - login nodes: for login and non-intensive interactive work such as job submission and monitoring, basic compilation, managing your disk space
+ - data transfer nodes: for transferring data to/from Savio
+ - compute nodes: for computational tasks
+
+
+
+
+# Logging in
+
+To login, you need to have software on your own machine that gives you access to a UNIX terminal (command-line) session. These come built-in with Mac (see `Applications -> Utilities -> Terminal`). For Windows, some options include [PuTTY](http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html).
+
+You also need to set up your smartphone or tablet with *Google Authenticator* to generate one-time passwords for you.
+
+Here are instructions for [doing this setup, and for logging in](http://research-it.berkeley.edu/services/high-performance-computing/logging-savio).
+
+Then to login:
+```
+ssh SAVIO_USERNAME@hpc.brc.berkeley.edu
+```
+
+Then enter XXXXXYYYYYY where XXXXXX is your PIN and YYYYYY is the one-time password. YYYYYY will be shown when you open your *Google authenticator* app on your phone/tablet.
+
+One can then navigate around and get information using standard UNIX commands such as `ls`, `cd`, `du`, `df`, etc.
+
+If you want to be able to open programs with graphical user interfaces:
+```
+ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+```
+
+To display the graphical windows on your local machine, you'll need X server software on your own machine to manage the graphical windows. For Windows, your options include *eXceed* or *Xming* and for Mac, there is *XQuartz*.
+
+# Data transfer with examples to/from laptop, Box, Google Drive, AWS
+
+Let's see how we would transfer files/data to/from Savio using a few different approaches.
+
+# Data transfer: SCP/SFTP
+
+We can use the *scp* and *sftp* protocols to transfer files.
+
+You need to use the Savio data transfer node, `dtn.brc.berkeley.edu`. The file `bayArea.csv` is too large to store on Github; you can obtain it [here](https://www.stat.berkeley.edu/share/paciorek/bayArea.csv).
+
+Linux/Mac:
+
+```
+# to Savio, while on your local machine
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/.
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/data/newName.csv
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:/global/scratch/paciorek/.
+
+# from Savio, while on your local machine
+scp paciorek@dtn.brc.berkeley.edu:~/data/newName.csv ~/Desktop/.
+```
+
+If you can ssh to your local machine or want to transfer files to other systems on to which you can ssh, you can login to the dtn node to execute the scp commands:
+
+```
+ssh SAVIO_USERNAME@dtn.brc.berkeley.edu
+[SAVIO_USERNAME@dtn ~]$ scp ~/file.csv OTHER_USERNAME@other.domain.edu:~/data/.
+```
+
+If you're already connected to a Savio login node, you can use `ssh dtn` to login to the dtn.
+
+One program you can use with Windows is *WinSCP*, and a multi-platform program for doing transfers via SFTP is *FileZilla*. After logging in, you'll see windows for the Savio filesystem and your local filesystem on your machine. You can drag files back and forth.
+
+You can package multiple files (including directory structure) together using tar:
+```
+tar -cvzf files.tgz dir_to_zip
+# to untar later:
+tar -xvzf files.tgz
+```
+
+# Data transfer: Globus
+
+You can use Globus Connect to transfer data data to/from Savio (and between other resources) quickly and unattended. This is a better choice for large transfers. Here are some [instructions](http://research-it.berkeley.edu/services/high-performance-computing/using-globus-connect-savio).
+
+Globus transfers data between *endpoints*. Possible endpoints include: Savio, your laptop or desktop, NERSC, and XSEDE, among others.
+
+Savio's endpoint is named `ucb#brc`.
+
+If you are transferring to/from your laptop, you'll need
+
+1) Globus Connect Personal set up,
+2) your machine established as an endpoint, and
+3) Globus Connect Pesonal actively running on your machine. At that point you can proceed as below.
+
+To transfer files, you open Globus at [globus.org](https://globus.org) and authenticate to the endpoints you want to transfer between. This means that you only need to authenticate once, whereas you might need to authenticate multiple times with scp and sftp. You can then start a transfer and it will proceed in the background, including restarting if interrupted.
+
+Globus also provides a [command line interface](https://docs.globus.org/cli/using-the-cli) that will allow you to do transfers programmatically, such that a transfer could be embedded in a workflow script.
+
+
+# Data transfer: Box
+
+Box provides **unlimited**, free, secured, and encrypted content storage of files with a maximum file size of 15 Gb to Berkeley affiliates. So it's a good option for backup and long-term storage.
+
+You can move files between Box and your laptop using the Box Sync app. And you can interact with Box via a web browser at [http://box.berkeley.edu](http://box.berkeley.edu).
+
+The best way to move files between Box and Savio is [via lftp as discussed here](http://research-it.berkeley.edu/services/high-performance-computing/transferring-data-between-savio-and-your-uc-berkeley-box-account).
+
+Here's how you logon to box via *lftp* on Savio (assuming you've set up an external password already as described in the link above):
+
+```
+ssh SAVIO_USERNAME@dtn.brc.berkeley.edu
+module load lftp
+lftp ftp.box.com
+set ssl-allow true
+user CAMPUS_USERNAME@berkeley.edu
+```
+
+```
+lpwd # on Savio
+ls # on box
+!ls # on Savio
+mkdir workshops
+cd workshops # on box
+lcd savio-training-intro-2017 # on savio
+put parallel-multi.R # savio to box
+get zotero.sqlite
+```
+
+One additional command that can be quite useful is *mirror*, which lets you copy an entire directory to/from Box.
+
+```
+# to upload a directory from Savio to Box
+mirror -R mydir
+# to download a directory from Box to Savio
+mirror mydir .
+```
+
+Be careful, because it's fairly easy to wipe out files or directories on Box.
+
+Finally you can set up *special purpose accounts* (Berkeley SPA) so files are owned at a project level rather than by individuals.
+
+For more ambitious users, Box has a Python-based SDK that can be used to write scripts for file transfers. For more information on how to do this, check out the `BoxAuthenticationBootstrap.ipynb` and `TransferFilesFromBoxToSavioScratch.ipynb` from BRC's cyberinfrastructure engineer on [GitHub](https://github.com/ucberkeley/brc-cyberinfrastructure/tree/dev/analysis-workflows/notebooks)
+
+BRC is working (long-term) on making Globus available for transfer to/from Box, but it's not available yet.
+
+# Data transfer: bDrive (Google Drive)
+
+bDrive provides **unlimited**, free, secured, and encrypted content storage of files with a maximum file size of 5 Tb to Berkeley affiliates.
+
+You can move files to and from your laptop using the Google Drive app.
+
+There are also some third-party tools for copying files to/from Google Drive, though I've found them to be a bit klunky. This is why we recommend using Box for workflows at this point. However, BRC is also working on making Globus available for transfer to/from bDrive, though it's not available yet.
+
+# Software modules
+
+A lot of software is available on Savio but needs to be loaded from the relevant software module before you can use it.
+
+```
+module list # what's loaded?
+module avail # what's available
+```
+
+One thing that tricks people is that the modules are arranged in a hierarchical (nested) fashion, so you only see some of the modules as being available *after* you load the parent module. Here's how we see the Python packages that are available.
+
+```
+which python
+python
+
+module avail
+module load python/3.2.3
+which python
+module avail
+module load numpy
+python
+# import numpy as np
+```
+
+Note that once Savio switches to the SL7 operating system circa December, all Python and R packages will be directly available as soon as either the Python or R module is loaded.
+
+Similarly, we can see that linear algebra, FFT, and HDF5/NetCDF software is available only after loading either the intel or gcc modules.
+
+```
+module load intel
+module avail
+module swap intel gcc
+module avail
+```
+
+# Submitting jobs: accounts and partitions
+
+All computations are done by submitting jobs to the scheduling software that manages jobs on the cluster, called SLURM.
+
+When submitting a job, the main things you need to indicate are the project account you are using (in some cases you might have access to multiple accounts such as an FCA and a condo) and the partition.
+
+You can see what accounts you have access to and which partitions within those accounts as follows:
+
+```
+sacctmgr -p show associations user=SAVIO_USERNAME
+```
+
+Here's an example of the output for a user who has access to an FCA, a condo, and a special partner account:
+```
+Cluster|Account|User|Partition|Share|GrpJobs|GrpTRES|GrpSubmit|GrpWall|GrpTRESMins|MaxJobs|MaxTRES|MaxTRESPerNode|MaxSubmit|MaxWall|MaxTRESMins|QOS|Def QOS|GrpTRESRunMins|
+brc|co_stat|paciorek|savio2_gpu|1||||||||||||savio_lowprio|savio_lowprio||
+brc|co_stat|paciorek|savio2_htc|1||||||||||||savio_lowprio|savio_lowprio||
+brc|co_stat|paciorek|savio|1||||||||||||savio_lowprio|savio_lowprio||
+brc|co_stat|paciorek|savio_bigmem|1||||||||||||savio_lowprio|savio_lowprio||
+brc|co_stat|paciorek|savio2|1||||||||||||savio_lowprio,stat_normal|stat_normal||
+brc|fc_paciorek|paciorek|savio2|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|fc_paciorek|paciorek|savio|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|fc_paciorek|paciorek|savio_bigmem|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|ac_scsguest|paciorek|savio2_htc|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|ac_scsguest|paciorek|savio2_gpu|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|ac_scsguest|paciorek|savio2|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|ac_scsguest|paciorek|savio_bigmem|1||||||||||||savio_debug,savio_normal|savio_normal||
+brc|ac_scsguest|paciorek|savio|1||||||||||||savio_debug,savio_normal|savio_normal||
+```
+
+If you are part of a condo, you'll notice that you have *low-priority* access to certain partitions. For example I am part of the statistics condo *co_stat*, which owns some Savio2 nodes and therefore I have normal access to those, but I can also burst beyond the condo and use other partitions at low-priority (see below).
+
+In contrast, through my FCA, I have access to the savio, savio2, and big memory partitions.
+
+# Submitting a batch job
+
+Let's see how to submit a simple job. If your job will only use the resources on a single node, you can do the following.
+
+
+Here's an example job script that I'll run. You'll need to modify the --account value and possibly the --partition value.
+
+
+ #!/bin/bash
+ # Job name:
+ #SBATCH --job-name=test
+ #
+ # Account:
+ #SBATCH --account=co_stat
+ #
+ # Partition:
+ #SBATCH --partition=savio2
+ #
+ # Wall clock limit (30 seconds here):
+ #SBATCH --time=00:00:30
+ #
+ ## Command(s) to run:
+ module load python/3.2.3 numpy
+ python3 calc.py >& calc.out
+
+
+Now let's submit and monitor the job:
+
+```
+sbatch job.sh
+
+squeue -j
+
+wwall -j
+```
+
+After a job has completed (or been terminated/cancelled), you can review the maximum memory used via the sacct command.
+
+```bash
+sacct -j --format=JobID,JobName,MaxRSS,Elapsed
+```
+
+MaxRSS will show the maximum amount of memory that the job used in kilobytes.
+
+
+Note that except for the *savio2_htc* and *savio2_gpu* partitions, all jobs are given exclusive access to the entire node or nodes assigned to the job (and your account is charged for all of the cores on the node(s).
+
+# Parallel job submission
+
+If you are submitting a job that uses multiple nodes, you'll need to carefully specify the resources you need. The key flags for use in your job script are:
+
+ - `--nodes` (or `-N`): indicates the number of nodes to use
+ - `--ntasks-per-node`: indicates the number of tasks (i.e., processes) one wants to run on each node
+ - `--cpus-per-task` (or `-c`): indicates the number of cpus to be used for each task
+
+In addition, in some cases it can make sense to use the `--ntasks` (or `-n`) option to indicate the total number of tasks and let the scheduler determine how many nodes and tasks per node are needed. In general `--cpus-per-task` will be 1 except when running threaded code.
+
+Here's an example job script for a job that uses MPI for parallelizing over multiple nodes:
+
+ #!/bin/bash
+ # Job name:
+ #SBATCH --job-name=test
+ #
+ # Account:
+ #SBATCH --account=account_name
+ #
+ # Partition:
+ #SBATCH --partition=partition_name
+ #
+ # Number of MPI tasks needed for use case (example):
+ #SBATCH --ntasks=40
+ #
+ # Processors per task:
+ #SBATCH --cpus-per-task=1
+ #
+ # Wall clock limit:
+ #SBATCH --time=00:00:30
+ #
+ ## Command(s) to run (example):
+ module load intel openmpi
+ mpirun ./a.out
+
+
+When you write your code, you may need to specify information about the number of cores to use. SLURM will provide a variety of variables that you can use in your code so that it adapts to the resources you have requested rather than being hard-coded.
+
+Here are some of the variables that may be useful: SLURM_NTASKS, SLURM_CPUS_PER_TASK, SLURM_NODELIST, SLURM_NNODES.
+
+Some common paradigms are:
+
+ - MPI jobs that use *one* CPU per task for each of *n* tasks
+ - openMP/threaded jobs that use *c* CPUs (on one node) for *one* task
+ - hybrid MPI+threaded jobs that use *c* CPUs for each of *n* tasks
+
+There are lots more examples of job submission scripts for different kinds of parallelization (multi-node (MPI), multi-core (openMP), hybrid, etc.) [here](http://research-it.berkeley.edu/services/high-performance-computing/running-your-jobs#Job-submission-with-specific-resource-requirements).
+
+
+# Interactive jobs
+
+You can also do work interactively.
+
+For this, you may want to have used the -Y flag to ssh if you are running software with a GUI such as MATLAB.
+
+```
+# ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+srun -A co_stat -p savio2 --nodes=1 -t 10:0 --pty bash
+# now execute on the compute node:
+module load matlab
+matlab
+```
+
+To end your interactive session (and prevent accrual of additional charges to your FCA), simply enter `exit` in the terminal session.
+
+NOTE: you are charged for the entire node when running interactive jobs (as with batch jobs) except in the *savio2_htc* and *savio2_gpu* partitions.
+
+# Running graphical interfaces interactively on the visualization node
+
+TODO: more details
+
+# Low-priority queue
+
+Condo users have access to the broader compute resource that is limited only by the size of partitions, under the *savio_lowprio* QoS (queue). However this QoS does not get a priority as high as the general QoSs, such as *savio_normal* and *savio_debug*, or all the condo QoSs, and it is subject to preemption when all the other QoSs become busy.
+
+More details can be found [in the *Low Priority Jobs* section of the user guide](http://research-it.berkeley.edu/services/high-performance-computing/user-guide/savio-user-guide).
+
+Suppose I wanted to burst beyond the Statistics condo to run on 20 nodes. I'll illustrate here with an interactive job though usually this would be for a batch job.
+
+```
+srun -A co_stat -p savio2 --qos=savio_lowprio --nodes=20 -t 10:0 --pty bash
+## now look at environment variables to see my job can access 20 nodes:
+env | grep SLURM
+```
+
+# HTC jobs
+
+There is a partition called the HTC partition that allows you to request cores individually rather than an entire node at a time. The nodes in this partition are faster than the other nodes.
+
+```
+srun -A co_stat -p savio2_htc --cpus-per-task=2 -t 10:0 --pty bash
+## we can look at environment variables to verify our two cores
+env | grep SLURM
+module load python/3.2.3 numpy
+python3 calc.py >& calc.out &
+top
+```
+
+# Alternatives to the HTC partition for collections of serial jobs
+
+You may have many serial jobs to run. It may be more cost-effective to collect those jobs together and run them across multiple cores on one or more nodes.
+
+Here are some options:
+
+ - using [Savio's HT Helper tool](http://research-it.berkeley.edu/services/high-performance-computing/user-guide/hthelper-script) to run many computational tasks (e.g., thousands of simulations, scanning tens of thousands of parameter values, etc.) as part of single Savio job submission
+ - using [single-node parallelism](https://github.com/berkeley-scf/tutorial-parallel-basics) and [multiple-node parallelism](https://github.com/berkeley-scf/tutorial-parallel-distributed) in Python, R, and MATLAB
+ - parallel R tools such as *foreach*, *parLapply*, and *mclapply*
+ - parallel Python tools such as *IPython parallel*, *pp*, and *multiprocessing*
+ - parallel functionality in MATLAB through *parfor*
+
+# Monitoring jobs and the job queue
+
+The basic command for seeing what is running on the system is `squeue`:
+```
+squeue
+squeue -u SAVIO_USERNAME
+squeue -A co_stat
+```
+
+To see what nodes are available in a given partition:
+```
+sinfo -p savio
+sinfo -p savio2_gpu
+```
+
+You can cancel a job with `scancel`.
+```
+scancel YOUR_JOB_ID
+```
+
+For more information on cores, QoS, and additional (e.g., GPU) resources, here's some syntax:
+```
+squeue -o "%.7i %.12P %.20j %.8u %.2t %.9M %.5C %.8r %.3D %.20R %.8p %.20q %b"
+```
+
+We provide some [tips about monitoring your job](http://research-it.berkeley.edu/services/high-performance-computing/tips-using-brc-savio-cluster).
+
+# Example use of standard software: IPython and R notebooks through JupyterHub
+
+Savio allows one to [run Jupyter-based notebooks via a browser-based service called Jupyterhub](http://research-it.berkeley.edu/services/high-performance-computing/using-jupyter-notebooks-and-jupyterhub-savio).
+
+Let's see a brief demo of an IPython notebook:
+
+ - Connect to https://jupyter.brc.berkeley.edu
+ - Login as usual with a one-time password
+ - Select how to run your notebook (on a test node or in the `savio2_htc`, `savio` or `savio2` partitions)
+ - Start up a notebook
+
+You can also run [parallel computations via an IPython notebook](http://research-it.berkeley.edu/services/high-performance-computing/using-jupyter-notebooks-and-jupyterhub-savio/parallelization).
+
+# Example use of standard software: Python
+
+Let's see a basic example of doing an analysis in Python across multiple cores on multiple nodes. We'll use the airline departure data in *bayArea.csv*.
+
+Here we'll use *IPython* for parallel computing. The example is a bit contrived in that a lot of the time is spent moving data around rather than doing computation, but it should illustrate how to do a few things.
+
+First we'll install a Python package not already available as a module.
+
+```
+# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+# install Python package
+module unload python
+module load python/2.7.8
+module load pip
+# trial and error to realize which package dependencies available in modules...
+module load numpy scipy six pandas pytz
+pip install --user statsmodels
+```
+
+Now we'll start up an interactive session, though often this sort of thing would be done via a batch job.
+
+```
+srun -A co_stat -p savio2 --nodes=2 --ntasks-per-node=24 -t 30:0 --pty bash
+```
+
+Now we'll start up a cluster using IPython's parallel tools. To do this across multiple nodes within a SLURM job, it goes like this:
+
+```
+module load python/2.7.8 ipython gcc openmpi
+ipcontroller --ip='*' &
+sleep 10
+srun ipengine &
+sleep 20 # wait until all engines have successfully started
+ipython
+```
+
+If we were doing this on a single node, we could start everything up in a single call to *ipcluster*:
+
+```
+module load python/2.7.8 ipython
+ipcluster start -n $SLURM_CPUS_ON_NODE &
+ipython
+```
+
+Here's our Python code (also found in *parallel.py*) for doing an analysis across multiple strata/subsets of the dataset in parallel. Note that the 'load_balanced_view' business is so that the computations are done in a load-balanced fashion, which is important for tasks that take different amounts of time to complete.
+
+```
+from IPython.parallel import Client
+c = Client()
+c.ids
+
+dview = c[:]
+dview.block = True
+dview.apply(lambda : "Hello, World")
+
+lview = c.load_balanced_view()
+lview.block = True
+
+import pandas
+dat = pandas.read_csv('bayArea.csv', header = None)
+dat.columns = ('Year','Month','DayofMonth','DayOfWeek','DepTime',
+'CRSDepTime','ArrTime','CRSArrTime','UniqueCarrier','FlightNum',
+'TailNum','ActualElapsedTime','CRSElapsedTime','AirTime','ArrDelay',
+'DepDelay','Origin','Dest','Distance','TaxiIn','TaxiOut','Cancelled',
+'CancellationCode','Diverted','CarrierDelay','WeatherDelay',
+'NASDelay','SecurityDelay','LateAircraftDelay')
+
+dview.execute('import statsmodels.api as sm')
+
+dat2 = dat.loc[:, ('DepDelay','Year','Dest','Origin')]
+dests = dat2.Dest.unique()
+
+mydict = dict(dat2 = dat2, dests = dests)
+dview.push(mydict)
+
+def f(id):
+ sub = dat2.loc[dat2.Dest == dests[id],:]
+ sub = sm.add_constant(sub)
+ model = sm.OLS(sub.DepDelay, sub.loc[:,('const','Year')])
+ results = model.fit()
+ return results.params
+
+import time
+time.time()
+parallel_result = lview.map(f, range(len(dests)))
+#result = map(f, range(len(dests)))
+time.time()
+
+# some NaN values because all 'Year' values are the same for some destinations
+
+parallel_result
+```
+
+And we'll stop our cluster.
+
+```
+ipcluster stop
+```
+
+# Example use of standard software: R
+
+Let's see a basic example of doing an analysis in R across multiple cores on multiple nodes. We'll use the airline departure data in *bayArea.csv*.
+
+We'll do this interactively though often this sort of thing would be done via a batch job.
+
+```
+# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+module load r Rmpi
+Rscript -e "install.packages('doMPI', repos = 'http://cran.cnr.berkeley.edu',
+ lib = '/global/home/users/paciorek/R/x86_64-pc-linux-gnu-library/3.2')"
+
+srun -A co_stat -p savio2 --nodes=3 --ntasks-per-node=24 -t 30:0 --pty bash
+module load gcc openmpi r Rmpi
+mpirun R CMD BATCH --no-save parallel-multi.R parallel-multi.Rout &
+```
+
+Now here's the R code (see *parallel-multi.R*) we're running:
+```
+library(doMPI)
+
+cl = startMPIcluster() # by default will start one fewer slave
+registerDoMPI(cl)
+clusterSize(cl) # just to check
+
+dat <- read.csv('/global/scratch/paciorek/bayArea.csv', header = FALSE,
+ stringsAsFactors = FALSE)
+names(dat)[16:18] <- c('delay', 'origin', 'dest')
+table(dat$dest)
+
+destVals <- unique(dat$dest)
+
+# restrict to only columns we need to reduce copying time
+dat2 <- subset(dat, select = c('delay', 'origin', 'dest'))
+
+# some overhead in copying 'dat2' to worker processes...
+results <- foreach(destVal = destVals) %dopar% {
+ sub <- subset(dat2, dest == destVal)
+ summary(sub$delay)
+}
+
+
+results
+
+closeCluster(cl)
+mpi.quit()
+```
+
+If you just want to parallelize within a node:
+
+```
+srun -A co_stat -p savio2 --nodes=1 -t 30:0 --pty bash
+module load r
+R CMD BATCH --no-save parallel-one.R parallel-one.Rout &
+```
+
+Now here's the R code (see *parallel-one.R*) we're running:
+```
+library(doParallel)
+
+nCores <- Sys.getenv('SLURM_CPUS_ON_NODE')
+registerDoParallel(nCores)
+
+dat <- read.csv('/global/scratch/paciorek/bayArea.csv', header = FALSE,
+ stringsAsFactors = FALSE)
+names(dat)[16:18] <- c('delay', 'origin', 'dest')
+table(dat$dest)
+
+destVals <- unique(dat$dest)
+
+results <- foreach(destVal = destVals) %dopar% {
+ sub <- subset(dat, dest == destVal)
+ summary(sub$delay)
+}
+
+results
+```
+
+
+
+# How to get additional help
+
+ - For technical issues and questions about using Savio:
+ - brc-hpc-help@berkeley.edu
+ - For questions about computing resources in general, including cloud computing:
+ - brc@berkeley.edu
+ - office hours: Wed. 1:30-3:30, Thur. 9:30-11:30 here in AIS
+ - For questions about data management (including HIPAA-protected data):
+ - researchdata@berkeley.edu
+
+
+# Upcoming events
+
+ - [Cloud Working Group](http://research-it.berkeley.edu/services/cloud-computing-support/cloud-working-group), every other Thursday (including Sep. 28), 4-5 in D-Lab
+ - [Machine Learning Working Group](http://dlab.berkeley.edu/working-groups/machine-learning-working-group-0), every other Friday (including Sep. 22), 12:30-2 in D-Lab
diff --git a/intro_slides.html b/intro_slides.html
new file mode 100644
index 0000000..6f08760
--- /dev/null
+++ b/intro_slides.html
@@ -0,0 +1,596 @@
+
+
+
+
+
+
+
+
+ Savio introductory training: Basic usage of the Berkeley Savio high-performance computing cluster
+
+
+
+
+
+
+
+
Savio introductory training: Basic usage of the Berkeley Savio high-performance computing cluster
+
+September 19, 2017
+
+
Chris Paciorek and Deb McCaffrey
+
+
+
Introduction
+
We'll do this mostly as a demonstration. We encourage you to login to your account and try out the various examples yourself as we go through them.
This training session will cover the following topics:
+
+
System capabilities and hardware
+
+
Getting access to the system - FCA, condo, ICA
+
Savio computing nodes
+
Disk space options (home, scratch, condo storage)
+
+
Logging in, data transfer, and software
+
+
Login nodes, compute nodes, and DTN nodes
+
Logging in
+
Data transfer
+
+
SCP/SFTP
+
Globus
+
Box
+
bDrive (Google drive)
+
+
Software modules
+
+
Submitting and monitoring jobs
+
+
Acounts and partitions
+
Basic job submission
+
Parallel jobs
+
Interactive jobs
+
Low-priority queue
+
HTC jobs
+
Monitoring jobs and cluster status
+
+
Basic use of standard software: Python and R
+
+
Jupyter notebooks
+
+
More information
+
+
How to get additional help
+
Upcoming events
+
+
+
+
+
System capabilities and hardware
+
+
Savio is a >380-node, >8000-core Linux cluster rated at >300 peak teraFLOPS.
+
about 174 compute nodes provided by the institution for general access
+
about 211 compute nodes contributed by researchers in the Condo program
+
+
+
+
Getting access to the system - FCA and condo
+
+
All regular Berkeley faculty can request 300,000 service units (roughly core-hours) per year through the Faculty Computing Allowance (FCA)
+
Researchers can also purchase nodes for their own priority access and gain access to the shared Savio infrastructure and to the ability to burst to additional nodes through the condo cluster program
Faculty/principal investigators can allow researchers working with them to get user accounts with access to the FCA or condo resources available to the faculty member.
The nodes are divided into several pools, called partitions. These partitions have different restrictions and costs associated with them (see the Scheduler Configuration section of this document). Any job you submit must be submitted to a partition to which you have access.
+
+
+
Disk space options (home, scratch, project, condo storage)
When reading/writing data to/from disk, unless the amount of data is small, please put the data in your scratch space at /global/scratch/SAVIO_USERNAME. The system is set up so that disk access for all users is optimized when users are doing input/output (I/O) off of scratch rather than off of their home directories. Doing I/O with files on your home directory can impact the ability of others to access their files on the filesystem.
+
Large amounts of disk space is available for purchase from the condo storage offering. The minimum purchase is about $7,000, which provides roughly 25 TB for five years.
+
+
+
Login nodes, compute nodes, and DTN nodes
+
Savio has a few different kinds of nodes:
+
+
login nodes: for login and non-intensive interactive work such as job submission and monitoring, basic compilation, managing your disk space
+
data transfer nodes: for transferring data to/from Savio
+
compute nodes: for computational tasks
+
+
+
+
+
+
+
Logging in
+
To login, you need to have software on your own machine that gives you access to a UNIX terminal (command-line) session. These come built-in with Mac (see Applications -> Utilities -> Terminal). For Windows, some options include PuTTY.
+
You also need to set up your smartphone or tablet with Google Authenticator to generate one-time passwords for you.
Then enter XXXXXYYYYYY where XXXXXX is your PIN and YYYYYY is the one-time password. YYYYYY will be shown when you open your Google authenticator app on your phone/tablet.
+
One can then navigate around and get information using standard UNIX commands such as ls, cd, du, df, etc.
+
If you want to be able to open programs with graphical user interfaces:
+
ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+
To display the graphical windows on your local machine, you'll need X server software on your own machine to manage the graphical windows. For Windows, your options include eXceed or Xming and for Mac, there is XQuartz.
+
+
+
Data transfer with examples to/from laptop, Box, Google Drive, AWS
+
Let's see how we would transfer files/data to/from Savio using a few different approaches.
+
+
+
Data transfer: SCP/SFTP
+
We can use the scp and sftp protocols to transfer files.
+
You need to use the Savio data transfer node, dtn.brc.berkeley.edu. The file bayArea.csv is too large to store on Github; you can obtain it here.
+
Linux/Mac:
+
# to Savio, while on your local machine
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/.
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:~/data/newName.csv
+scp bayArea.csv paciorek@dtn.brc.berkeley.edu:/global/scratch/paciorek/.
+
+# from Savio, while on your local machine
+scp paciorek@dtn.brc.berkeley.edu:~/data/newName.csv ~/Desktop/.
+
If you can ssh to your local machine or want to transfer files to other systems on to which you can ssh, you can login to the dtn node to execute the scp commands:
If you're already connected to a Savio login node, you can use ssh dtn to login to the dtn.
+
One program you can use with Windows is WinSCP, and a multi-platform program for doing transfers via SFTP is FileZilla. After logging in, you'll see windows for the Savio filesystem and your local filesystem on your machine. You can drag files back and forth.
+
You can package multiple files (including directory structure) together using tar:
+
tar -cvzf files.tgz dir_to_zip
+# to untar later:
+tar -xvzf files.tgz
+
+
+
Data transfer: Globus
+
You can use Globus Connect to transfer data data to/from Savio (and between other resources) quickly and unattended. This is a better choice for large transfers. Here are some instructions.
+
Globus transfers data between endpoints. Possible endpoints include: Savio, your laptop or desktop, NERSC, and XSEDE, among others.
+
Savio's endpoint is named ucb#brc.
+
If you are transferring to/from your laptop, you'll need
+
+
Globus Connect Personal set up,
+
your machine established as an endpoint, and
+
Globus Connect Pesonal actively running on your machine. At that point you can proceed as below.
+
+
To transfer files, you open Globus at globus.org and authenticate to the endpoints you want to transfer between. This means that you only need to authenticate once, whereas you might need to authenticate multiple times with scp and sftp. You can then start a transfer and it will proceed in the background, including restarting if interrupted.
+
Globus also provides a command line interface that will allow you to do transfers programmatically, such that a transfer could be embedded in a workflow script.
+
+
+
Data transfer: Box
+
Box provides unlimited, free, secured, and encrypted content storage of files with a maximum file size of 15 Gb to Berkeley affiliates. So it's a good option for backup and long-term storage.
+
You can move files between Box and your laptop using the Box Sync app. And you can interact with Box via a web browser at http://box.berkeley.edu.
lpwd # on Savio
+ls # on box
+!ls # on Savio
+mkdir workshops
+cd workshops # on box
+lcd savio-training-intro-2017 # on savio
+put parallel-multi.R # savio to box
+get zotero.sqlite
+
One additional command that can be quite useful is mirror, which lets you copy an entire directory to/from Box.
+
# to upload a directory from Savio to Box
+mirror -R mydir
+# to download a directory from Box to Savio
+mirror mydir .
+
Be careful, because it's fairly easy to wipe out files or directories on Box.
+
Finally you can set up special purpose accounts (Berkeley SPA) so files are owned at a project level rather than by individuals.
+
For more ambitious users, Box has a Python-based SDK that can be used to write scripts for file transfers. For more information on how to do this, check out the BoxAuthenticationBootstrap.ipynb and TransferFilesFromBoxToSavioScratch.ipynb from BRC's cyberinfrastructure engineer on GitHub
+
BRC is working (long-term) on making Globus available for transfer to/from Box, but it's not available yet.
+
+
+
Data transfer: bDrive (Google Drive)
+
bDrive provides unlimited, free, secured, and encrypted content storage of files with a maximum file size of 5 Tb to Berkeley affiliates.
+
You can move files to and from your laptop using the Google Drive app.
+
There are also some third-party tools for copying files to/from Google Drive, though I've found them to be a bit klunky. This is why we recommend using Box for workflows at this point. However, BRC is also working on making Globus available for transfer to/from bDrive, though it's not available yet.
+
+
+
Software modules
+
A lot of software is available on Savio but needs to be loaded from the relevant software module before you can use it.
+
module list # what's loaded?
+module avail # what's available
+
One thing that tricks people is that the modules are arranged in a hierarchical (nested) fashion, so you only see some of the modules as being available after you load the parent module. Here's how we see the Python packages that are available.
Note that once Savio switches to the SL7 operating system circa December, all Python and R packages will be directly available as soon as either the Python or R module is loaded.
+
Similarly, we can see that linear algebra, FFT, and HDF5/NetCDF software is available only after loading either the intel or gcc modules.
All computations are done by submitting jobs to the scheduling software that manages jobs on the cluster, called SLURM.
+
When submitting a job, the main things you need to indicate are the project account you are using (in some cases you might have access to multiple accounts such as an FCA and a condo) and the partition.
+
You can see what accounts you have access to and which partitions within those accounts as follows:
+
sacctmgr -p show associations user=SAVIO_USERNAME
+
Here's an example of the output for a user who has access to an FCA, a condo, and a special partner account:
If you are part of a condo, you'll notice that you have low-priority access to certain partitions. For example I am part of the statistics condo co_stat, which owns some Savio2 nodes and therefore I have normal access to those, but I can also burst beyond the condo and use other partitions at low-priority (see below).
+
In contrast, through my FCA, I have access to the savio, savio2, and big memory partitions.
+
+
+
Submitting a batch job
+
Let's see how to submit a simple job. If your job will only use the resources on a single node, you can do the following.
+
Here's an example job script that I'll run. You'll need to modify the --account value and possibly the --partition value.
MaxRSS will show the maximum amount of memory that the job used in kilobytes.
+
Note that except for the savio2_htc and savio2_gpu partitions, all jobs are given exclusive access to the entire node or nodes assigned to the job (and your account is charged for all of the cores on the node(s).
+
+
+
Parallel job submission
+
If you are submitting a job that uses multiple nodes, you'll need to carefully specify the resources you need. The key flags for use in your job script are:
+
+
--nodes (or -N): indicates the number of nodes to use
+
--ntasks-per-node: indicates the number of tasks (i.e., processes) one wants to run on each node
+
--cpus-per-task (or -c): indicates the number of cpus to be used for each task
+
+
In addition, in some cases it can make sense to use the --ntasks (or -n) option to indicate the total number of tasks and let the scheduler determine how many nodes and tasks per node are needed. In general --cpus-per-task will be 1 except when running threaded code.
+
Here's an example job script for a job that uses MPI for parallelizing over multiple nodes:
+
#!/bin/bash
+ # Job name:
+ #SBATCH --job-name=test
+ #
+ # Account:
+ #SBATCH --account=account_name
+ #
+ # Partition:
+ #SBATCH --partition=partition_name
+ #
+ # Number of MPI tasks needed for use case (example):
+ #SBATCH --ntasks=40
+ #
+ # Processors per task:
+ #SBATCH --cpus-per-task=1
+ #
+ # Wall clock limit:
+ #SBATCH --time=00:00:30
+ #
+ ## Command(s) to run (example):
+ module load intel openmpi
+ mpirun ./a.out
+
When you write your code, you may need to specify information about the number of cores to use. SLURM will provide a variety of variables that you can use in your code so that it adapts to the resources you have requested rather than being hard-coded.
+
Here are some of the variables that may be useful: SLURM_NTASKS, SLURM_CPUS_PER_TASK, SLURM_NODELIST, SLURM_NNODES.
+
Some common paradigms are:
+
+
MPI jobs that use one CPU per task for each of n tasks
+
openMP/threaded jobs that use c CPUs (on one node) for one task
+
hybrid MPI+threaded jobs that use c CPUs for each of n tasks
+
+
There are lots more examples of job submission scripts for different kinds of parallelization (multi-node (MPI), multi-core (openMP), hybrid, etc.) here.
+
+
+
Interactive jobs
+
You can also do work interactively.
+
For this, you may want to have used the -Y flag to ssh if you are running software with a GUI such as MATLAB.
+
# ssh -Y SAVIO_USERNAME@hpc.brc.berkeley.edu
+srun -A co_stat -p savio2 --nodes=1 -t 10:0 --pty bash
+# now execute on the compute node:
+module load matlab
+matlab
+
+
+
Low-priority queue
+
Condo users have access to the broader compute resource that is limited only by the size of partitions, under the savio_lowprio QoS (queue). However this QoS does not get a priority as high as the general QoSs, such as savio_normal and savio_debug, or all the condo QoSs, and it is subject to preemption when all the other QoSs become busy.
Suppose I wanted to burst beyond the Statistics condo to run on 20 nodes. I'll illustrate here with an interactive job though usually this would be for a batch job.
+
srun -A co_stat -p savio2 --qos=savio_lowprio --nodes=20 -t 10:0 --pty bash
+## now look at environment variables to see my job can access 20 nodes:
+env | grep SLURM
+
+
+
HTC jobs
+
There is a partition called the HTC partition that allows you to request cores individually rather than an entire node at a time. The nodes in this partition are faster than the other nodes.
+
srun -A co_stat -p savio2_htc --cpus-per-task=2 -t 10:0 --pty bash
+## we can look at environment variables to verify our two cores
+env | grep SLURM
+module load python/3.2.3 numpy
+python3 calc.py >& calc.out &
+top
+
+
+
Alternatives to the HTC partition for collections of serial jobs
+
You may have many serial jobs to run. It may be more cost-effective to collect those jobs together and run them across multiple cores on one or more nodes.
+
Here are some options:
+
+
using Savio's HT Helper tool to run many computational tasks (e.g., thousands of simulations, scanning tens of thousands of parameter values, etc.) as part of single Savio job submission
Let's see a basic example of doing an analysis in Python across multiple cores on multiple nodes. We'll use the airline departure data in bayArea.csv.
+
Here we'll use IPython for parallel computing. The example is a bit contrived in that a lot of the time is spent moving data around rather than doing computation, but it should illustrate how to do a few things.
+
First we'll install a Python package not already available as a module.
+
# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+# install Python package
+module unload python
+module load python/2.7.8
+module load pip
+# trial and error to realize which package dependencies available in modules...
+module load numpy scipy six pandas pytz
+pip install --user statsmodels
+
Now we'll start up an interactive session, though often this sort of thing would be done via a batch job.
Here's our Python code (also found in parallel.py) for doing an analysis across multiple strata/subsets of the dataset in parallel. Note that the 'load_balanced_view' business is so that the computations are done in a load-balanced fashion, which is important for tasks that take different amounts of time to complete.
+
from IPython.parallel import Client
+c = Client()
+c.ids
+
+dview = c[:]
+dview.block = True
+dview.apply(lambda : "Hello, World")
+
+lview = c.load_balanced_view()
+lview.block = True
+
+import pandas
+dat = pandas.read_csv('bayArea.csv', header = None)
+dat.columns = ('Year','Month','DayofMonth','DayOfWeek','DepTime',
+'CRSDepTime','ArrTime','CRSArrTime','UniqueCarrier','FlightNum',
+'TailNum','ActualElapsedTime','CRSElapsedTime','AirTime','ArrDelay',
+'DepDelay','Origin','Dest','Distance','TaxiIn','TaxiOut','Cancelled',
+'CancellationCode','Diverted','CarrierDelay','WeatherDelay',
+'NASDelay','SecurityDelay','LateAircraftDelay')
+
+dview.execute('import statsmodels.api as sm')
+
+dat2 = dat.loc[:, ('DepDelay','Year','Dest','Origin')]
+dests = dat2.Dest.unique()
+
+mydict = dict(dat2 = dat2, dests = dests)
+dview.push(mydict)
+
+def f(id):
+ sub = dat2.loc[dat2.Dest == dests[id],:]
+ sub = sm.add_constant(sub)
+ model = sm.OLS(sub.DepDelay, sub.loc[:,('const','Year')])
+ results = model.fit()
+ return results.params
+
+import time
+time.time()
+parallel_result = lview.map(f, range(len(dests)))
+#result = map(f, range(len(dests)))
+time.time()
+
+# some NaN values because all 'Year' values are the same for some destinations
+
+parallel_result
+
And we'll stop our cluster.
+
ipcluster stop
+
+
+
Example use of standard software: R
+
Let's see a basic example of doing an analysis in R across multiple cores on multiple nodes. We'll use the airline departure data in bayArea.csv.
+
We'll do this interactively though often this sort of thing would be done via a batch job.
+
# remember to do I/O off scratch
+cp bayArea.csv /global/scratch/paciorek/.
+module load r Rmpi
+Rscript -e "install.packages('doMPI', repos = 'http://cran.cnr.berkeley.edu',
+ lib = '/global/home/users/paciorek/R/x86_64-pc-linux-gnu-library/3.2')"
+
+srun -A co_stat -p savio2 --nodes=3 --ntasks-per-node=24 -t 30:0 --pty bash
+module load gcc openmpi r Rmpi
+mpirun R CMD BATCH --no-save parallel-multi.R parallel-multi.Rout &
+
Now here's the R code (see parallel-multi.R) we're running:
+
library(doMPI)
+
+cl = startMPIcluster() # by default will start one fewer slave
+registerDoMPI(cl)
+clusterSize(cl) # just to check
+
+dat <- read.csv('/global/scratch/paciorek/bayArea.csv', header = FALSE,
+ stringsAsFactors = FALSE)
+names(dat)[16:18] <- c('delay', 'origin', 'dest')
+table(dat$dest)
+
+destVals <- unique(dat$dest)
+
+# restrict to only columns we need to reduce copying time
+dat2 <- subset(dat, select = c('delay', 'origin', 'dest'))
+
+# some overhead in copying 'dat2' to worker processes...
+results <- foreach(destVal = destVals) %dopar% {
+ sub <- subset(dat2, dest == destVal)
+ summary(sub$delay)
+}
+
+
+results
+
+closeCluster(cl)
+mpi.quit()
+
If you just want to parallelize within a node:
+
srun -A co_stat -p savio2 --nodes=1 -t 30:0 --pty bash
+module load r
+R CMD BATCH --no-save parallel-one.R parallel-one.Rout &
+
Now here's the R code (see parallel-one.R) we're running: