OpenCilk

1 program Added 2026-03-11T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Open Cilk, Cilk
Provenance: commit aeda592e59 · authored 2026-03-11T23:26:01+01:00 · agent claude-code · model claude-sonnet-4-6

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

oK (0.37)Cilk (0.24)OpenCL (0.24)OpenCL C (0.24)OpenLogo (0.21)

LLM-contributed programs

Parallel Fibonacci

Provenance: commit aeda592e59 · authored 2026-03-11T23:26:01+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.c · added: 2026-03-11T10:00:00Z
#include <stdio.h>
#include <stdlib.h>
#include <cilk/cilk.h>

long fib(long n) {
    if (n < 2) return n;
    long x = cilk_spawn fib(n - 1);
    long y = fib(n - 2);
    cilk_sync;
    return x + y;
}

int main(int argc, char *argv[]) {
    long n = (argc > 1) ? atol(argv[1]) : 10;
    printf("fib(%ld) = %ld\n", n, fib(n));
    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.)

Contribute — propose a file extension

Tell us where to find evidence about OpenCilk (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/OpenCilk/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← OpenAxiom OpenCL →