summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-11-21 06:15:39 +0000
committerBill Wendling <isanbard@gmail.com>2013-11-21 06:15:39 +0000
commit3099edd7304fb1b7e1a3a72bcfb466dbeb5b72fd (patch)
tree020a7ba948f59ada1997a0e10fe1c62f6470de46 /docs
parentad10ff6cdacd0b5e9257188e86947c17d32fcac5 (diff)
downloadllvm-3099edd7304fb1b7e1a3a72bcfb466dbeb5b72fd.tar.gz
llvm-3099edd7304fb1b7e1a3a72bcfb466dbeb5b72fd.tar.bz2
llvm-3099edd7304fb1b7e1a3a72bcfb466dbeb5b72fd.tar.xz
Add blurb about Likely.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195315 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.rst13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 90ba87e846..fea976c301 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -132,12 +132,23 @@ Ports to other architectures like ARM and AArch64 are underway.
DXR
---
-`DXR https://wiki.mozilla.org/DXR`_ is Mozilla's code search and navigation
+`DXR <https://wiki.mozilla.org/DXR>`_ is Mozilla's code search and navigation
tool, aimed at making sense of large projects like Firefox. It supports
full-text and regex searches as well as structural queries like "Find all the
callers of this function." Behind the scenes, it uses a custom trigram index,
the re2 library, and structural data collected by a clang compiler plugin.
+Likely
+------
+
+`Likely <http://www.liblikely.org/>`_ is an open source domain specific
+language for image recognition. Algorithms are just-in-time compiled using
+LLVM's MCJIT infrastructure to execute on single or multi-threaded CPUs as well
+as OpenCL SPIR or CUDA enabled GPUs. Likely exploits the observation that while
+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.
+
Additional Information
======================