Cilk++
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Cilk Plus predecessor, Intel Cilk++
Provenance: commit 0abf3f33c8 · authored 2026-03-17T03:42:57+01:00 · agent claude-code · model claude-sonnet-4-6
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
Provenance: commit 0abf3f33c8 · authored 2026-03-17T03:42:57+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
#include <cilk/cilk.h>
#include <stdio.h>
int fib(int n)
{
if (n < 2)
return n;
int x = cilk_spawn fib(n-1);
int y = fib(n-2);
cilk_sync;
return x + y;
}
int main(void)
{
int result = fib(30);
printf("Fibonacci of 30 is %d\n", result);
return 0;
}
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.)