Difference between revisions of "ALCF"

From PHASTA Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
Wiki page for information related to the '''Argonne Leadership Computing Facility''' ('''ALCF''') located at Argonne National Labs.
 +
 +
==Overview==
 +
{| class="wikitable" style="text-align:center;"
 +
! Key
 +
! Value
 +
! Notes
 +
|-
 +
| style="font-weight:bold; text-align:left;" | Machines
 +
| Cooley
 +
| Visualization
 +
|-
 +
| style="text-align:left;" |
 +
| Theta
 +
| Compute
 +
|-
 +
| style="font-weight:bold; text-align:left;" | Job Submission System
 +
| [https://xgitlab.cels.anl.gov/aig-public/cobalt Cobalt]
 +
|
 +
|-
 +
| style="font-weight:bold; text-align:left;" | Facility Documentation
 +
| [https://www.alcf.anl.gov/support-center ALCF Support Center]
 +
|
 +
|}
 +
 +
== How-To's ==
 +
 +
=== Login ===
 
From the Viz nodes connect to Theta at ALCF with the command:
 
From the Viz nodes connect to Theta at ALCF with the command:
  
Line 5: Line 33:
 
You will find yourself in your home space on the Theta file system. To change directory into a project space you must include the path to the Theta file system. The command <code>cd /gpfs/theta-fs1/projects</code> will take you to the directory containing all project spaces on Theta.
 
You will find yourself in your home space on the Theta file system. To change directory into a project space you must include the path to the Theta file system. The command <code>cd /gpfs/theta-fs1/projects</code> will take you to the directory containing all project spaces on Theta.
  
Note that Theta uses a file system separate from Mira/Cetus/Cooley. There is one login node on Mira, however, that can access both file system and can therefore be used to copy files between the two. This is <code>miralac3</code>, which is accessed with the command:
 
 
ssh -Y <username>@miralac3.alcf.anl.gov
 
 
By default, you will be on the Mira file system (<code>/gpfs/mira-fs0/</code>), but you can access the Theta system by simply adding the path to it (<code>/gpfs/theta-fs1</code>).
 
 
'''Note:'''
 
Theta is not a big machine like Mira, it's size is closer to Cetus. Therefore no big jobs will run on Theta. Also, at this time, Theta does not have a priority system. This means one should look at the availability of the machine before submitting a job. The following commands can be used to determine how many nodes are available, and the maximum job wall time for a job to be loaded onto the machine, respectively.
 
 
nodelist | grep idle | grep <queue_name> | wc
 
 
nodelist | grep idle | grep <queue_name> | head
 
  
 
[[Category:ComputeFacilities]]
 
[[Category:ComputeFacilities]]

Revision as of 10:00, 23 July 2020

Wiki page for information related to the Argonne Leadership Computing Facility (ALCF) located at Argonne National Labs.

Overview

Key Value Notes
Machines Cooley Visualization
Theta Compute
Job Submission System Cobalt
Facility Documentation ALCF Support Center

How-To's

Login

From the Viz nodes connect to Theta at ALCF with the command:

ssh -Y <username>@theta.alcf.anl.gov

You will find yourself in your home space on the Theta file system. To change directory into a project space you must include the path to the Theta file system. The command cd /gpfs/theta-fs1/projects will take you to the directory containing all project spaces on Theta.