Building runtime system which wraps main on top of HPX #5673
Unanswered
antoniupop
asked this question in
Q&A
Replies: 1 comment 2 replies
-
The easiest way of coordinating the initialization of HPX with your system startup might be to take things into your own hands and to do it explicitly. As long as you don't |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking at how to get the main wrapper used in HPX and the one I need to have in my own dataflow runtime system (let's call it DFR) to work gracefully along each other. Right now I am unable to get this to work at all (including using the compiler's main constructor/destructor). Have you seen other similar uses? Any idea of how (or if) this could work? Normally the HPX wrapper should be the outermost - the constructor/destructor allow both to coexist but the latter becomes outermost, so the DFR initialisation cannot issue calls for initialising HPX.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions