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

Partial mem nodes #18

Merged
merged 2 commits into from
Jan 9, 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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.10.0] - 2023-01-09

- Support partial access to hugemem nodes & add module 6.0 in [14](https://github.com/OSC/bc_osc_comsol/pull/14).

## [0.9.0] - 2021-12-16
### Changed
- [13](https://github.com/OSC/bc_osc_comsol/pull/13)
Expand Down Expand Up @@ -117,7 +121,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Initial release!

[Unreleased]: https://github.com/OSC/bc_osc_comsol/compare/v0.9.0...HEAD
[Unreleased]: https://github.com/OSC/bc_osc_comsol/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/OSC/bc_osc_comsol/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/OSC/bc_osc_comsol/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/OSC/bc_osc_comsol/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/OSC/bc_osc_comsol/compare/v0.7.0...v0.7.1
Expand Down
3 changes: 2 additions & 1 deletion form.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ attributes:
- [
'hugemem', 'hugemem',
data-max-num-cores: 48,
data-min-num-cores: 48,
data-min-num-cores: 4,
]
version:
widget: select
label: "COMSOL Multiphysics version"
help: "This defines the version of COMSOL Multiphysics you want to load."
options:
- ["6.0", "comsol/6.0"]
- ["5.5", "comsol/5.5"]
- ["5.4", "comsol/5.4"]
- ["5.3a", "comsol/53a"]
Expand Down
1 change: 0 additions & 1 deletion submit.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

case node_type
when "hugemem"
ppn = 48
partition = bc_num_slots.to_i > 1 ? "hugemem-parallel" : "hugemem"
slurm_args = base_slurm_args + [ "--ntasks-per-node", "#{ppn}", "--partition", partition ]
when "vis"
Expand Down