[llvm-branch-commits] [llvm-branch] r216760 - Update to include ISPC. By Dmitry Babokin.

Bill Wendling isanbard at gmail.com
Fri Aug 29 12:57:40 PDT 2014


Author: void
Date: Fri Aug 29 14:57:40 2014
New Revision: 216760

URL: http://llvm.org/viewvc/llvm-project?rev=216760&view=rev
Log:
Update to include ISPC. By Dmitry Babokin.

Modified:
    llvm/branches/release_35/docs/ReleaseNotes.rst

Modified: llvm/branches/release_35/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_35/docs/ReleaseNotes.rst?rev=216760&r1=216759&r2=216760&view=diff
==============================================================================
--- llvm/branches/release_35/docs/ReleaseNotes.rst (original)
+++ llvm/branches/release_35/docs/ReleaseNotes.rst Fri Aug 29 14:57:40 2014
@@ -294,6 +294,17 @@ new LLVM-based code generators "on the f
 loads them in to the compiler backend as runtime libraries to avoid
 per-target recompilation of larger parts of the compiler chain. 
 
+ISPC
+----
+
+`ISPC <http://ispc.github.io/>`_ is a C-based language based on the SPMD
+(single program, multiple data) programming model that generates efficient
+SIMD code for modern processors without the need for complex analysis and
+autovectorization. The language exploits the concept of “varying” data types,
+which ensure vector-friendly data layout, explicit vectorization and compact
+representation of the program. The project uses the LLVM infrastructure for
+optimization and code generation.
+
 Additional Information
 ======================
 





More information about the llvm-branch-commits mailing list