[PATCH] D77914: [mlir][docs] Explain the EDSC acronym. NFC

Jonathan Roelofs via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 10 16:09:51 PDT 2020


jroelofs created this revision.
Herald added subscribers: llvm-commits, frgossen, grosul1, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mehdi_amini.
Herald added a project: LLVM.
jroelofs abandoned this revision.
jroelofs added a comment.
jroelofs updated this revision to Diff 256693.
jroelofs updated this revision to Diff 256696.
jroelofs added a reviewer: rriddle.

Arc didn't do what I wanted here. I'll re-submit.


jroelofs added a comment.

re-submitting


jroelofs added a comment.

(sorry for the noise, I'm learning how to use arcanist)


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D77914

Files:
  llvm/docs/Lexicon.rst
  mlir/docs/EDSC.md


Index: mlir/docs/EDSC.md
===================================================================
--- mlir/docs/EDSC.md
+++ mlir/docs/EDSC.md
@@ -2,9 +2,10 @@
 
 The main purpose of the declarative builders API is to provide an intuitive way
 of constructing MLIR programmatically. In the majority of cases, the IR we wish
-to construct exhibits structured control-flow. Declarative builders provide an
-API to make MLIR construction and manipulation very idiomatic, for the
-structured control-flow case, in C++.
+to construct exhibits structured control-flow. The Declarative builders in the
+`EDSC` library (Embedded Domain Specific Compiler) provide an API to make MLIR
+construction and manipulation very idiomatic, for the structured control-flow
+case, in C++.
 
 ## ScopedContext
 
Index: llvm/docs/Lexicon.rst
===================================================================
--- llvm/docs/Lexicon.rst
+++ llvm/docs/Lexicon.rst
@@ -92,6 +92,14 @@
 **DSE**
     Dead Store Elimination
 
+E
+-
+
+**EDSC**
+    Embedded Domain Specific Compiler. A library of `declarative builders
+    <https://mlir.llvm.org/docs/EDSC/>`_ for constructing MLIR
+    programmatically with an idiomatic C++ API.
+
 F
 -
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77914.256696.patch
Type: text/x-patch
Size: 1208 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200410/256d4022/attachment.bin>


More information about the llvm-commits mailing list