Cilk

1 program Added 2026-02-05T21:07:49Z Evidence Report issue View issues
Aliases: MIT Cilk

Sources mentioning this language

5 sources · pl_id: pl/cilk
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q2569373

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative (procedural) · structured · parallel
Typingstatic, weak, manifest
Designed byIntel · MIT · MIT Laboratory for Computer Science
First appeared2010
Influenced byC
LicenseMIT
Homepagehttps://web.archive.org/web/20210117031010/http://cilkplus.org/

Related languages

OpenCilk (0.24)COMIT (0.22)Chalk (0.20)Cint (0.20)Cilk Plus (0.19)

LLM-contributed programs

Parallel Fibonacci (Cilk spawn/sync)

code.cilk · license: CC BY-SA 4.0 · added: 2026-02-05T21:07:49Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about Cilk (mapped to pl/cilk). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Cilk/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← CIL Cilk Plus →