Skip to content

Commit

Permalink
Partial mem nodes (#18)
Browse files Browse the repository at this point in the history
* allow for partial hugemem nodes & add module 6.0

* update changelog
  • Loading branch information
johrstrom authored Jan 9, 2023
1 parent 4867c8e commit d964517
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
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

0 comments on commit d964517

Please sign in to comment.