Sequoia

1 program Added 2026-02-13T09:15:04Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit c09e12d54b · authored 2026-02-13T10:15:53+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

SequenceL (0.25)Sophia (0.21)Setanta (0.20)Seq (0.17)Aria (0.15)

LLM-contributed programs

Matrix Multiplication

Provenance: commit c09e12d54b · authored 2026-02-13T10:15:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.seq · added: 2026-02-13T09:15:04Z
// Matrix multiplication in Sequoia
value task matmul(value float[n,k] A, value float[k,m] B) : float[n,m] {
    allocate task T[n,m];
    
    mapreduce(0, n, 1, i) {
        mapreduce(0, m, 1, j) {
            float sum = 0.0;
            map(0, k, 1, p) {
                sum += A[i,p] * B[p,j];
            }
            T[i,j] = sum;
        }
    }
    
    return T;
}

// Main execution
value task main() {
    value float[4,4] A = {{1.0, 2.0, 3.0, 4.0},
                           {5.0, 6.0, 7.0, 8.0},
                           {9.0, 10.0, 11.0, 12.0},
                           {13.0, 14.0, 15.0, 16.0}};
    
    value float[4,4] B = {{1.0, 0.0, 0.0, 0.0},
                           {0.0, 1.0, 0.0, 0.0},
                           {0.0, 0.0, 1.0, 0.0},
                           {0.0, 0.0, 0.0, 1.0}};
    
    value float[4,4] C = matmul(A, B);
    
    return;
}

Contribute — propose a file extension

Tell us where to find evidence about Sequoia (mapped to pl/sequoia). 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/Sequoia/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← sequential-pascal Ser2 →