Skip to content

Commit

Permalink
support partial allocation of hugemem nodes (#42)
Browse files Browse the repository at this point in the history
* support partial allocation of hugemem nodes

* update changelog
  • Loading branch information
johrstrom authored Jan 9, 2023
1 parent 8a3d54c commit 80eef4f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.16.2] - 2023-01-09

- Support for partial hugemem nodes in [42](https://github.com/OSC/bc_osc_ansys_workbench/pull/42).

## [0.16.1] - 2022-12-08

- Same as version 0.16.0

## [0.16.0] - 2022-12-08

- Added 2022 versions in [41](https://github.com/OSC/bc_osc_ansys_workbench/pull/41).

## [0.15.0] - 2022-12-06

- Removed several module versions of the app in [40](https://github.com/OSC/bc_osc_ansys_workbench/pull/40).

## [0.14.0] - 2022-02-8

### Added
Expand Down Expand Up @@ -173,7 +189,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Initial release!

[Unreleased]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.14.0...HEAD
[Unreleased]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.16.2...HEAD
[0.16.2]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.16.1...v0.16.2
[0.16.1]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.16.0...v0.16.1
[0.16.0]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.13.1...v0.14.0
[0.13.1]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.13.0...v0.13.1
[0.13.0]: https://github.com/OSC/bc_osc_ansys_workbench/compare/v0.12.2...v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion form.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ attributes:
- [
'hugemem', 'hugemem',
data-max-num-cores: 48,
data-min-num-cores: 48,
data-min-num-cores: 4,
]
version:
widget: select
Expand Down
1 change: 0 additions & 1 deletion submit.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

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

0 comments on commit 80eef4f

Please sign in to comment.