CIL is a programming language created in 1994.
#693on PLDB | 30Years Old | 1Repos |
Cilk, Cilk++ and Cilk Plus are general-purpose programming languages designed for multithreaded parallel computing. They are based on the C and C++ programming languages, which they extend with constructs to express parallel loops and the forkโjoin idiom. Originally developed in the 1990s at the Massachusetts Institute of Technology (MIT) in the group of Charles E. Read more on Wikipedia...
// y โ ฮฑ x + y
void axpy(int n, float alpha, const float *x, float *y)
{
for (int i = 0; i < n; i++) {
y[i] += alpha * x[i];
}
}
Feature | Supported | Example | Token |
---|---|---|---|
Comments | โ | // A comment | |
Line Comments | โ | // A comment | // |
Semantic Indentation | X |