Checkpoint synchronization: Difference between revisions

Content deleted Content added
Rdm (talk | contribs)
J draft
Line 338:
}
interp.waitAtTop(promiseAllFulfilled(waits))</lang>
=={{header|J}}==
 
The current implementations of J are all single threaded. However, the language definition offers a lot of parallelism which I imagine will eventually be supported, once performance gains significantly better than a factor of 2 on common problems become economically viable.
 
For example in 1 2 3 + 4 5 6, we have three addition operations which are specified to be carried out in parallel, and this kind of parallelism pervades the language definition.
 
=={{header|Java}}==