Created
June 28, 2017 18:20
-
-
Save zbyerly/dedfee6fadf768c774692892da254626 to your computer and use it in GitHub Desktop.
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
#include <hpx/hpx_init.hpp> | |
#include <hpx/hpx.hpp> | |
int hpx_main(int argc, char **argv) { | |
hpx::lcos::channel<double> buffer; | |
std::string const channel_string = "my_channel"; | |
buffer.register_as(channel_string); | |
return hpx::finalize(); | |
} | |
int main(int argc, char **argv){ | |
return hpx::init(argc,argv); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment