-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #597 from lukemartinlogan/hermes-1.1
Improve asynchronous behavior. Temporarily disable freeing tasks.
- Loading branch information
Showing
71 changed files
with
1,644 additions
and
1,108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,13 @@ class Hermes(CMakePackage): | |
variant('vfd', default=False, description='Enable HDF5 VFD') | ||
variant('ares', default=False, description='Enable full libfabric install') | ||
variant('debug', default=False, description='Enable debug mode') | ||
variant('debug', default=False, description='Build shared libraries') | ||
variant('zmq', default=False, description='Build ZeroMQ tests') | ||
|
||
depends_on('[email protected]') | ||
depends_on('cereal') | ||
depends_on('[email protected]') | ||
depends_on('[email protected]:') | ||
# depends_on('[email protected]') | ||
depends_on('catch2') | ||
depends_on('[email protected]') | ||
depends_on('yaml-cpp') | ||
depends_on('[email protected]:') | ||
depends_on('hermes_shm') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,11 @@ class HermesShm(CMakePackage): | |
version('master', branch='master') | ||
depends_on('[email protected]') | ||
depends_on('[email protected]') | ||
depends_on('mpi') | ||
depends_on('[email protected]:') | ||
# depends_on('mpi') | ||
depends_on('[email protected]') | ||
depends_on('[email protected]: +context +fiber') | ||
depends_on('cereal') | ||
depends_on('yaml-cpp') | ||
depends_on('[email protected]') | ||
|
||
variant('debug', default=False, description='Build shared libraries') | ||
|
Oops, something went wrong.