123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- #ifndef BOOST_MPI_ENVIRONMENT_HPP
- #define BOOST_MPI_ENVIRONMENT_HPP
- #include <boost/mpi/config.hpp>
- #include <boost/noncopyable.hpp>
- #include <boost/optional.hpp>
- #include <string>
- #include <iosfwd>
- namespace boost { namespace mpi {
- namespace threading {
- enum level {
-
- single,
-
- funneled,
-
- serialized,
-
- multiple
- };
- std::ostream& operator<<(std::ostream& out, level l);
- std::istream& operator>>(std::istream& in, level& l);
- }
- class BOOST_MPI_DECL environment : noncopyable {
- public:
- #ifdef BOOST_MPI_HAS_NOARG_INITIALIZATION
-
- explicit environment(bool abort_on_exception = true);
-
- explicit environment(threading::level mt_level, bool abort_on_exception = true);
- #endif
-
- environment(int& argc, char** &argv, bool abort_on_exception = true);
-
- environment(int& argc, char** &argv, threading::level mt_level,
- bool abort_on_exception = true);
-
- ~environment();
-
- [[noreturn]] static void abort(int errcode);
-
- static bool initialized();
-
- static bool finalized();
-
- static int max_tag();
-
- static int collectives_tag();
-
- static optional<int> host_rank();
-
- static optional<int> io_rank();
-
- static std::string processor_name();
-
- static threading::level thread_level();
-
- static bool is_main_thread();
-
-
- static std::pair<int, int> version();
-
- static std::string library_version();
- private:
-
- bool i_initialized;
-
- bool abort_on_exception;
-
-
- static const int num_reserved_tags = 1;
- };
- } }
- #endif
|