[llvm-branch-commits] [llvm-branch] r195373 - Add blurb about WebCL Validator.

Bill Wendling isanbard at gmail.com
Thu Nov 21 11:58:50 PST 2013


Author: void
Date: Thu Nov 21 13:58:50 2013
New Revision: 195373

URL: http://llvm.org/viewvc/llvm-project?rev=195373&view=rev
Log:
Add blurb about WebCL Validator.

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

Modified: llvm/branches/release_34/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_34/docs/ReleaseNotes.rst?rev=195373&r1=195372&r2=195373&view=diff
==============================================================================
--- llvm/branches/release_34/docs/ReleaseNotes.rst (original)
+++ llvm/branches/release_34/docs/ReleaseNotes.rst Thu Nov 21 13:58:50 2013
@@ -149,6 +149,18 @@ image processing and statistical learnin
 to handle any matrix datatype, at runtime they tend to be executed repeatedly
 on the same type.
 
+WebCL Validator
+---------------
+
+`WebCL Validator <https://github.com/KhronosGroup/webcl-validator>`_ implements
+validation for WebCL C language which is a subset of OpenCL ES 1.1. Validator
+checks the correctness of WebCL C, and implements memory protection for it as a
+source-2-source transformation. The transformation converts WebCL to memory
+protected OpenCL. The protected OpenCL cannot access any memory ranges which
+were not allocated for it, and its memory is always initialized to prevent
+information leakage from other programs.
+
+
 Additional Information
 ======================
 





More information about the llvm-branch-commits mailing list