Re: [X10-users] Question on async

2007-03-19 Thread Vijay Saraswat
Shet, Aniruddha G. wrote: >Hi, > >Will an async embedded in a Java/X10 for statement generate parallel >activities? > >i.e. for(int i=1;i<=10;i++) or for (point p:R) > async (place P) { > } >In the above case, will the 10 activities run in parallel? > > Yes, these ten activitie

[X10-users] Question on async

2007-03-19 Thread Shet, Aniruddha G.
Hi, Will an async embedded in a Java/X10 for statement generate parallel activities? i.e. for(int i=1;i<=10;i++) or for (point p:R) async (place P) { } In the above case, will the 10 activities run in parallel? How can the parent activity here transmit the corresponding val