Skip to content

Commit c8651ce

Browse files
Merge pull request #240 from PurdueRCAC/u/carls113/launcher-post
2 parents a38668e + ce4fe7f commit c8651ce

10 files changed

Lines changed: 136 additions & 1 deletion
310 KB
Loading
243 KB
Loading
212 KB
Loading
169 KB
Loading
1.02 MB
Loading
567 KB
Loading
344 KB
Loading
145 KB
Loading

docs/blog/.authors.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,10 @@ authors:
6161
description: Senior Research Data Facilitator
6262
avatar: https://www.rcac.purdue.edu/files/users/rwilfong/photo.jpg
6363
slug: https://www.rcac.purdue.edu/about/staff/rwilfong
64-
url: https://www.rcac.purdue.edu/about/staff/rwilfong
64+
url: https://www.rcac.purdue.edu/about/staff/rwilfong
65+
carls113:
66+
name: Michael Carlson
67+
description: Senior Computational Scientist
68+
avatar: https://www.rcac.purdue.edu/files/users/carls113/photo.jpg
69+
slug: https://www.rcac.purdue.edu/about/staff/carls113
70+
url: https://www.rcac.purdue.edu/about/staff/carls113
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
date:
3+
created: 2026-06-03
4+
#Sometimes, bloggers need to update a post. This might happen when you make a mistake or when something changes that you need to reflect in the post. To indicate you have edited a post, you can include an updated date in the page header.
5+
#updated: 2025-09-03
6+
7+
categories:
8+
- Software
9+
10+
#Title will change how it's displayed on website
11+
title: Gautschi's Universal Software Launcher
12+
13+
#Slug will change how it's shown in the domain url
14+
slug: universal_launcher
15+
16+
tags:
17+
- Software
18+
- Slurm
19+
- Gautschi
20+
authors:
21+
- carls113
22+
---
23+
24+
# Gautschi's Universal Software Launcher
25+
26+
Want to launch applications through ThinLinc, and think it is difficult to remember all the necessary Slurm options to launch things on compute nodes? There is a launcher for that!
27+
28+
<!-- more -->
29+
30+
In ThinLinc, you may be familiar with the couple of application launchers that are available for specific applications, including:
31+
32+
- Comsol
33+
- MATLAB
34+
- QGIS
35+
- RStudio
36+
- Stata 19
37+
- Windows Server
38+
39+
But did you know that there is an additional launcher that can launch any application on Gautschi? It is called the "Universal App Launcher." It guides you through the process and options necessary to launch any application you want on Gautschi on a compute node.
40+
41+
## How to Find the Launcher
42+
43+
To find it, simply open the "Applications" menu in ThinLinc, naviagte to the "Cluster Software" section and select the "Universal App Launcher."
44+
45+
![An image showing the location of the universal launcher menu item within ThinLinc.](/assets/images/blog/launcher-Desktop_menu.png)
46+
47+
## Account Selection
48+
49+
Once launched, it will open a menu where you can select which account you want your resource request attributed to.
50+
51+
![A window showing a few Slurm accounts with associated resource limits, including GPU hours and Free Cores.](/assets/images/blog/launcher-Account_menu.png)
52+
53+
Your menu will have different accounts available to it, according to which research group(s) you are a part of.
54+
55+
## Partition and QoS Selection
56+
57+
After selecting the account and clicking "Continue", you will be taken to a menu where you can select which partition and Quality of Service you want to submit to.
58+
59+
![A menu showing all the partitions on Gautschi, each with their allowed Qualities of Service, as well as some metrics about each one, including the idle nodes, cores, and GPUs, and the max walltime allowed for each one.](/assets/images/blog/launcher-Partition_menu.png)
60+
61+
If you would like additional explanation of each of the terms and options, you can click on any of the "Help" buttons below, which will open a window with additional information, helping you make your choice. Unless you know you need a GPU, I would suggest starting with the `CPU` partition with the `normal` Quality of Service (QoS).
62+
63+
## Software Selection
64+
65+
Once you have selected your desired Partition and QoS combination and clicked "Continue", you will be taken to a table that contains all the applications available on Gautschi. You can filter the available options by typing in the white box at the top of the window.
66+
67+
![A table that shows all the available modules to load on Gautschi, with a text box at the top to search through applications.](/assets/images/blog/launcher-Application_table.png)
68+
69+
## Version Selection
70+
71+
After selecting the application you want to launch and clicking "Continue", a window with the different versions available to use will appear. Often, there will be a single option here, but if there are multiple and you are unsure of which version you need, a helpful default would be the most recent/highest version.
72+
73+
![A table with the available versions of Abaqus on Gautschi.](/assets/images/blog/launcher-Version_table.png)
74+
75+
In this post, we are using the Abaqus application as an example, but you could choose anything that is available on Gautschi.
76+
77+
## Dependency Selection
78+
79+
If your application has dependencies (other modules that are needed to make it work), a window with the available dependencies will appear.
80+
81+
![A table with the available dependency options for the Abaqus software.](/assets/images/blog/launcher-Dependency_table.png)
82+
83+
In our case, there is only one option, but for other applications, there may be multiple options for dependencies.
84+
85+
## Additional Slurm Specifications
86+
87+
If your application does not require any dependencies, or after you have selected the dependency set you would like to load, a window will appear with additional Slurm resource request options.
88+
89+
![A window with many options to fill in, including number of cores, amount of memory, walltime, the command to run the application, a list of modules that will be loaded, and any additional slurm options that you may need.](/assets/images/blog/launcher-Slurm_options_menu.png)
90+
91+
There is a lot here, but this post will go through all the options and explain them all.
92+
93+
### Cores
94+
95+
First, there is the number of cores you want to request. The `CPU` nodes on Gautschi have a total of 192 cores on them, so a reasonable request would be a quarter of the node, or 48 cores, which is the default. Changing this number will modify the next option box, which is the amount of memory in MB.
96+
97+
### Memory
98+
99+
If you are unsure of how many cores you will need, but do know how much RAM your workflow will take, you can instead specify the amount of memory required and it will change the number of cores to match your memory request.
100+
101+
### Walltime
102+
103+
Third is the walltime. This is how long your job will run before being terminated. You can always end a job early, but you cannot extend the walltime of a job, so it is important to give yourself enough time to get all your work done. The format of the walltime is days-hours:minutes, so the default (and maximum) for the `CPU` partition under the `normal` QoS is 14 days. The maximum time for the `standby` QoS is 4 hours.
104+
105+
### Software Command
106+
107+
Next is the most important option of all of them: the command to run the application. This is what will be run on the compute node that you request. If this is wrong, your job will fail, or have unexpected behavior. The default is just the name of the application that you would like to load. As an example, this would work well for Comsol, because the command to launch it is just `comsol`. In our example, we would actually need to edit this, because if we wanted to launch Abaqus in a graphical mode, we would need the command: `abaqus cae -mesa`. If you have questions about this part, you can always ask our support team for assistance.
108+
109+
### Loading Additional Software
110+
111+
Fifth is a button to load additional modules. This is for if you want/need any additional applications to be available to your compute session. If you do need additional modules, you can click this button and it will open another window, where you can choose any other application that you want to add to your session.
112+
113+
![A table, like the application table seen earlier, but this is for additional modules to load instead of being the main one.](/assets/images/blog/launcher-Additional_mods_menu.png)
114+
115+
After selecting any additional modules you want, if they have dependencies, you will be taken to the same dependency table window you may have seen earlier, except with the dependencies for the additional module you have selected.
116+
117+
You can add as many additional modules as you would like through this menu.
118+
119+
### Module List
120+
121+
Right below the `Load Additional Modules` button, there is a box that contains a list of all the modules that will be loaded into your session in the order that they will be loaded. This is for informational purposes, to make sure you are loading everything that you want in your session and to keep track of what you have already selected.
122+
123+
### Additional Options
124+
125+
Lastly, there is a box for any additional Slurm options that you may want to add to your resource request. This is rarely needed and most often will be left blank, but is there just in case.
126+
127+
## The End
128+
129+
Once you are all set with all the modules you want and all the options correct, you can hit continue and your resource request will be queued by the scheduler, Slurm. After your resource request makes it out of the queue and starts, the specified command will be run on a compute node and you are good to go.

0 commit comments

Comments
 (0)