-
Notifications
You must be signed in to change notification settings - Fork 28
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 #206 from PDoakORNL/fix_no_mpi_build
fixing no mpi build
- Loading branch information
Showing
14 changed files
with
203 additions
and
228 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,20 @@ | |
// See CITATION.md for citation guidelines, if DCA++ is used for scientific publications. | ||
// | ||
// Author: Peter Doak ([email protected]) | ||
// Giovanni Balduzzi ([email protected]) | ||
// | ||
// This file provides distribution strategy tags | ||
|
||
#ifndef DCA_DIST_TYPE_HPP | ||
#define DCA_DIST_TYPE_HPP | ||
|
||
#include <string> | ||
|
||
namespace dca { | ||
enum class DistType { NONE, MPI }; | ||
|
||
DistType stringToDistType(const std::string& name); | ||
std::string toString(DistType type); | ||
} // namespace dca | ||
|
||
#endif // DCA_DIST_TYPE_HPP |
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
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
Oops, something went wrong.