Skip to content

Commit

Permalink
memory_allocation_type in SimpleLinuxUtilityForResourceManagementEngi…
Browse files Browse the repository at this point in the history
…ne now default to PER_NODE
  • Loading branch information
dthulke authored and critias committed Jan 27, 2023
1 parent 98a9705 commit 4727af3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- The memory_allocation_type in the slurm engine now default to per_node instead of per_cpu for consistency with other engines

### Added
- Support for async workflow definitions. If await tk.async_run(obj) is called sisyphus will wait until all Path objects inside of obj are available
- Path has now is_set method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class MemoryAllocationType(Enum):
PER_NODE = "per_node"

def __init__(self, default_rqmt, gateway=None, has_memory_resource=True, auto_clean_eqw=True,
ignore_jobs=[], memory_allocation_type=MemoryAllocationType.PER_CPU):
ignore_jobs=[], memory_allocation_type=MemoryAllocationType.PER_NODE):
"""
:param dict default_rqmt: dictionary with the default rqmts
Expand Down

0 comments on commit 4727af3

Please sign in to comment.