Skip to content

Commit

Permalink
rm support for owens (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom authored Dec 16, 2024
1 parent 93f9ddc commit 22cca36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 38 deletions.
45 changes: 11 additions & 34 deletions form.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
cluster:
- "owens"
- "cardinal"
form:
- version
Expand Down Expand Up @@ -41,31 +40,30 @@ 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.
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: 28,
data-max-num-cores: 96,
data-min-num-cores: 1,
]
- [
'vis', 'vis',
data-max-num-cores: 28,
data-max-num-cores: 96,
data-min-num-cores: 1,
]
- [
'hugemem', 'hugemem',
data-max-num-cores: 48,
data-min-num-cores: 4,
data-option-for-cluster-ascend: false
data-max-num-cores: 96,
data-min-num-cores: 47,
]
version:
widget: select
Expand All @@ -74,27 +72,6 @@ attributes:
options:
- [
"2024 R1", "ansys/2024R1",
data-option-for-cluster-owens: false,
]
- [
"2023 R2", "ansys/2023R2",
data-option-for-cluster-cardinal: false,
]
- [
"2022 R2", "ansys/2022R2",
data-option-for-cluster-cardinal: false,
]
- [
"2022 R1", "ansys/2022R1",
data-option-for-cluster-cardinal: false,
]
- [
"2021 R2", "ansys/2021R2",
data-option-for-cluster-cardinal: false,
]
- [
"2021 R1", "ansys/2021R1",
data-option-for-cluster-cardinal: false,
]
user_license_provider:
widget: select
Expand Down
4 changes: 0 additions & 4 deletions template/script.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,7 @@ export -n I_MPI_HYDRA_BOOTSTRAP_EXEC_EXTRA_ARGS

# Launch ANSYS Workbench
<%- if gpu -%>
<%- if context.cluster == 'owens' -%>
module load intel/16.0.3 virtualgl/2.6.3
<%- else -%>
module load virtualgl
<%- end -%>
module list
set -x
vglrun runwb2
Expand Down

0 comments on commit 22cca36

Please sign in to comment.