Re: Python Integrated Parallel Pipeline EnviRonment: PIPPER

2009-02-05 Thread Kyle
PIPPER doesn't yet have a very large user base, and is still in Alpha. So if there is enough demand, syntax changes would still be possible at this stage. Kyle > I'm not a big fan of comments that change semantics. Wouldn't a modified > 'with' statement look better? > > We have a couple of other

Re: Python Integrated Parallel Pipeline EnviRonment: PIPPER

2009-02-05 Thread Stefan Behnel
Kyle wrote: > def do_call(x,y): > print "Hello World", x, y, os.getpid() > > if __name__ == '__pipper_main__': > a_range = range( int(sys.argv[1]) ) > #pragma pipper_start > for a in a_range : > for b in a_range : > do_call(a,b) >

Python Integrated Parallel Pipeline EnviRonment: PIPPER

2009-02-05 Thread Kyle
I wanted to share a Python based project which I've been working on. Python Integrated Parallel Pipeline EnviRonment (PIPPER) is an MPI based programming environment that works much like an OpenMP on Python code. It is designed to create a python programming environment where par