[llvm-branch-commits] [llvm-branch] r195315 - Add blurb about Likely.
Bill Wendling
isanbard at gmail.com
Wed Nov 20 22:15:39 PST 2013
Author: void
Date: Thu Nov 21 00:15:39 2013
New Revision: 195315
URL: http://llvm.org/viewvc/llvm-project?rev=195315&view=rev
Log:
Add blurb about Likely.
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=195315&r1=195314&r2=195315&view=diff
==============================================================================
--- llvm/branches/release_34/docs/ReleaseNotes.rst (original)
+++ llvm/branches/release_34/docs/ReleaseNotes.rst Thu Nov 21 00:15:39 2013
@@ -132,12 +132,23 @@ Ports to other architectures like ARM an
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
======================
More information about the llvm-branch-commits
mailing list