Fork Join Rosetta Stone
Jump to navigation
Jump to search
ForkJoin | X10 (Sarkar 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 | ||||
fork_loop | x10.fork_loop | ||||
void_fork_loop | forasync | x10.void_fork_loop | |||
join_fork_loop | executor.invokeAll(callables) | ||||
join_void_fork_loop | forall | cilk_for |