Kshitij,

> I had submitted a proposal earlier for the development of Python bindings
> and just wanted to provide some updates. I have been working with some hpx
> examples, going through the documentation and also looking at the Python
> bindings created for other libraries. Additionally, I have also spent some
> time and gained the initial familiarity with Boost.Python library. I
> intend to continue with the development of some function bindings, for a
> use case, in a day or two. 

Wow, great!

> I would be grateful for your suggestions in
> this regard. You can let me know if there are certain aspects which I need
> to address first.

Getting HPX running and stopping is probably the first thing you want to do. 
Perhaps something like:


import sys
import HPX

def hpx_main(argv):
    print 'Hello HPX world!'
    return HPX.finalize()

def main(argv):
    return HPX.init(hpx_main, argv)

if __name__ == "__main__":
    sys.exit(main(sys.argv))


Later on we can try finding more 'pythonic' abstractions, but this 
functionality would be needed in any case.

Regards Hartmut
---------------
http://boost-spirit.com
http://stellar.cct.lsu.edu



_______________________________________________
hpx-users mailing list
[email protected]
https://mail.cct.lsu.edu/mailman/listinfo/hpx-users

Reply via email to