Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow ascend to use vis nodes and fix pitzer desktop gpus #244

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion apps.awesim.org/apps/bc_desktop/ascend.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,16 @@ attributes:
widget: select
label: "Node type"
help: |
Need docs
- **any** - (*88 cores*) Chooses anyone of the available Ascend nodes.
This reduces the wait time as you have no requirements.
- **vis** - (*88 cores*) This node includes an NVIDIA Tesla A100 GPU with
an X server running in the background. This allows for Hardware
Rendering with the GPU typically needed for 3D visualization using
VirtualGL. There are currently only 10 of these nodes on Owens.
- **gpu** - (*88 cores*) This node includes an NVIDIA Tesla A100 GPU
allowing for CUDA computations. There are currently only 96 of these
nodes on Ascend. These nodes don't start an X server, so visualization
with hardware rendering is not possible.
options:
- [
"cpu", "any",
Expand All @@ -90,4 +99,11 @@ attributes:
data-min-num-cores: 1,
data-max-num-cores: 88,
]
- [
"vis", "vis",
data-min-gpus: 0,
data-max-gpus: 3,
data-min-num-cores: 1,
data-max-num-cores: 84,
]
submit: submit/slurm.yml.erb
2 changes: 0 additions & 2 deletions apps.awesim.org/apps/bc_desktop/submit/slurm.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
def gpu_count
if !gpus.nil? && !gpus.empty?
gpus
elsif cluster == 'pitzer'
2
else
1
end
Expand Down
18 changes: 17 additions & 1 deletion ondemand.osc.edu/apps/bc_desktop/ascend.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,16 @@ attributes:
widget: select
label: "Node type"
help: |
Need docs
- **any** - (*88 cores*) Chooses anyone of the available Ascend nodes.
This reduces the wait time as you have no requirements.
- **vis** - (*88 cores*) This node includes an NVIDIA Tesla A100 GPU with
an X server running in the background. This allows for Hardware
Rendering with the GPU typically needed for 3D visualization using
VirtualGL. There are currently only 10 of these nodes on Owens.
- **gpu** - (*88 cores*) This node includes an NVIDIA Tesla A100 GPU
allowing for CUDA computations. There are currently only 96 of these
nodes on Ascend. These nodes don't start an X server, so visualization
with hardware rendering is not possible.
options:
- [
"cpu", "any",
Expand All @@ -90,4 +99,11 @@ attributes:
data-min-num-cores: 1,
data-max-num-cores: 88,
]
- [
"vis", "vis",
data-min-gpus: 0,
data-max-gpus: 3,
data-min-num-cores: 1,
data-max-num-cores: 84,
]
submit: submit/slurm.yml.erb
2 changes: 0 additions & 2 deletions ondemand.osc.edu/apps/bc_desktop/submit/slurm.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
def gpu_count
if !gpus.nil? && !gpus.empty?
gpus
elsif cluster == 'pitzer'
2
else
1
end
Expand Down
Loading