Cilk
Aliases: MIT Cilk
Sources mentioning this language
5 sources · pl_id:
pl/cilkWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative (procedural) · structured · parallel |
|---|---|
| Typing | static, weak, manifest |
| Designed by | Intel · MIT · MIT Laboratory for Computer Science |
| First appeared | 2010 |
| Influenced by | C |
| License | MIT |
| Homepage | https://web.archive.org/web/20210117031010/http://cilkplus.org/ |
Related languages
LLM-contributed programs
Parallel Fibonacci (Cilk spawn/sync)
cilk int fib (int n) {
if (n < 2) return n;
int x = spawn fib(n-1);
int y = fib(n-2);
sync;
return x+y;
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)