diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 3c7673e34ec4..e0641ff40d92 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -402,6 +402,22 @@ be used to verify some algorithms. + +
ispc is a compiler for "single program, + multiple data" (SPMD) programs. It compiles a C-based SPMD programming + language to run on the SIMD units of CPUs; it often delivers 5-6x speedups on + a single core of a CPU with an 8-wide SIMD unit compared to serial code, + while still providing a clean and easy-to-understand programming model. For + an introduction to the language and its performance, + see the walkthrough of a short + example program. ispc is licensed under the BSD license.
+ +