diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-11-21 19:58:50 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-11-21 19:58:50 +0000 |
commit | 498ace662bb52bad08922381e663ba1a7c1067cc (patch) | |
tree | a2aa15f8dd0fda9627756564961e48b61b1bb67d /docs | |
parent | 4e2d2f091e88dd83d1685173d2c0692d8ae155e6 (diff) | |
download | external_llvm-498ace662bb52bad08922381e663ba1a7c1067cc.zip external_llvm-498ace662bb52bad08922381e663ba1a7c1067cc.tar.gz external_llvm-498ace662bb52bad08922381e663ba1a7c1067cc.tar.bz2 |
Add blurb about WebCL Validator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index fea976c..474ce62 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -149,6 +149,18 @@ image processing and statistical learning kernels must be written generically 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 ====================== |