Fork Join Rosetta Stone
Jump to navigation
Jump to search
ForkJoin | X10 (videos) | X10 (231 code) | Thread | ExecutorService | cilk |
---|---|---|---|---|---|
fork | future | x10.fork | executor.submit(callable) | ||
void_fork | async | x10.void_fork | thread.start | executor.submit(runnable) | cilk_spawn |
join | thread.join | future.get | cilk_sync | ||
finish | x10.finish |