Created
April 10, 2019 20:49
-
-
Save bremerm31/584501988c9dc8d6ab1101b9e67d7228 to your computer and use it in GitHub Desktop.
Script erroneously name hello world
This file contains hidden or 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
File Edit Options Buffers Tools C++ Help | |
#include <hpx/hpx_init.hpp> | |
#include <hpx/include/iostreams.hpp> | |
int hpx_main() | |
{ | |
hpx::cout << hpx::get_num_localities().get() << hpx::endl; | |
return hpx::finalize(); | |
} | |
int main(int argc, char* argv[]) | |
{ | |
// Initialize and run HPX. | |
return hpx::init(argc, argv); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment