Skip to content

Commit

Permalink
remove support for owens cluster (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom authored Dec 16, 2024
1 parent b33cef0 commit 71b445d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 25 deletions.
39 changes: 19 additions & 20 deletions form.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
cluster:
- "owens"
- "cardinal"
form:
- auto_modules_abaqus
- version
- auto_accounts
- bc_num_hours
- num_cores
Expand All @@ -12,6 +11,11 @@ form:
- bc_vnc_resolution
- bc_email_on_started
attributes:
version:
widget: select
options:
- ['2022', 'abaqus/2022']
- ['2024', 'abaqus/2024']
num_cores:
widget: "number_field"
label: "Number of cores"
Expand All @@ -27,33 +31,28 @@ attributes:
widget: select
label: "Node type"
help: |
- **any** - (*28 cores*) Use any available Owens node. This reduces the
- **any** - (*96 cores*) Use any available Cardinal node. This reduces the
wait time as there are no node requirements.
- **vis** - (*28 cores*) Use an Owens node that has an [NVIDIA Tesla P100
GPU](http://www.nvidia.com/object/tesla-p100.html) with an X server
- **vis** - (*96 cores*) Use a Cardinal node that has an [NVIDIA NVIDIA H100
GPU](https://www.nvidia.com/en-us/data-center/h100/) with an X server
running in the background. This utilizes the GPU for hardware
accelerated 3D visualization. There are 160 of these nodes on Owens.
- **hugemem** - (*48 cores*) Use an Owens node that has 1.5TB of
available RAM as well as 48 cores. There are 16 of these nodes on
Owens. These nodes always reserve the entire node.
accelerated 3D visualization.
- **hugemem** - (*96 cores*) Use an Cardinal node that has 2TB of
available RAM as well as 96 cores. There are 16 of these nodes on
Cardinal.
options:
- [
'any', 'any',
data-max-num-cores-for-cluster-owens: 28,
data-min-num-cores-for-cluster-owens: 1,
data-max-num-cores-for-cluster-cardinal: 48,
data-min-num-cores-for-cluster-cardinal: 1,
data-max-num-cores: 96,
data-min-num-cores: 1,
]
- [
'vis', 'vis',
data-max-num-cores-for-cluster-owens: 28,
data-min-num-cores-for-cluster-owens: 1,
data-max-num-cores-for-cluster-cardinal: 48,
data-min-num-cores-for-cluster-cardinal: 1,
data-max-num-cores: 96,
data-min-num-cores: 1,
]
- [
'hugemem', 'hugemem',
data-max-num-cores-for-cluster-owens: 48,
data-min-num-cores-for-cluster-owens: 4,
data-option-for-cluster-cardinal: false,
data-max-num-cores: 96,
data-min-num-cores: 47,
]
6 changes: 1 addition & 5 deletions template/script.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ fi
#

# Load the required environment
<%- if context.cluster == 'cardinal' -%>
module load xalt/latest <%= context.auto_modules_abaqus %>
<%- else -%>
module load xalt/latest intel/18.0.3 <%= context.auto_modules_abaqus %>
<%- end -%>
module load <%= context.version %>

# Output debug information
module list
Expand Down

0 comments on commit 71b445d

Please sign in to comment.