index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
mlir
/
examples
/
toy
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
NFC: Update Ch.1 of the Toy tutorial.
River Riddle
2019-08-23
2
-7
/
+5
*
NFC: Move LLVMIR, SDBM, and StandardOps to the Dialect/ directory.
River Riddle
2019-08-19
8
-8
/
+8
*
Change from llvm::make_unique to std::make_unique
Jacques Pienaar
2019-08-17
13
-117
/
+107
*
Refactor ElementsAttr::getValue and DenseElementsAttr::getSplatValue.
River Riddle
2019-08-14
1
-6
/
+2
*
Express ownership transfer in PassManager API through std::unique_ptr (NFC)
Mehdi Amini
2019-08-12
9
-8
/
+22
*
NFC: Standardize the terminology used for parent ops/regions/etc.
River Riddle
2019-08-09
1
-1
/
+1
*
NFC: Update usages of OwningRewritePatternList to pass by & instead of &&.
River Riddle
2019-08-09
2
-4
/
+3
*
NFC: Update FuncOp::addEntryBlock to return the newly inserted block.
River Riddle
2019-08-07
4
-12
/
+4
*
Add TTI pass initialization to pass managers.
Diego Caballero
2019-08-05
1
-2
/
+4
*
NFC: Implement OwningRewritePatternList as a class instead of a using directive.
River Riddle
2019-08-05
4
-11
/
+11
*
Refactor region type signature conversion to be explicit via patterns.
River Riddle
2019-07-20
1
-0
/
+5
*
NFC: Expose a ConversionPatternRewriter for use with ConversionPatterns.
River Riddle
2019-07-19
2
-14
/
+20
*
Refactor the conversion of block argument types in DialectConversion.
River Riddle
2019-07-19
1
-2
/
+2
*
Refactor DialectConversion to support different conversion modes.
River Riddle
2019-07-16
2
-4
/
+4
*
Remove the 'region' field from OpBuilder.
River Riddle
2019-07-12
1
-1
/
+1
*
NFC: Remove redundant call to registerPassManagerCLOptions from MLIR tutorial
Smit Hinsu
2019-07-12
1
-3
/
+0
*
Rename FunctionAttr to SymbolRefAttr.
River Riddle
2019-07-12
5
-4
/
+8
*
NFC: Replace Module::getNamedFunction with lookupSymbol<FuncOp>.
River Riddle
2019-07-12
3
-9
/
+13
*
NFC: Rename Module to ModuleOp.
River Riddle
2019-07-10
7
-10
/
+10
*
Update ModuleOp::create(...) to take a Location instead of a context.
River Riddle
2019-07-10
4
-4
/
+4
*
NFC: Rename Function to FuncOp.
River Riddle
2019-07-10
7
-37
/
+37
*
NFC: Remove `Module::getFunctions` in favor of a general `getOps<T>`.
River Riddle
2019-07-08
3
-5
/
+7
*
NFC: Remove the various "::getFunction" methods.
River Riddle
2019-07-08
1
-1
/
+1
*
Remove std::move of trivially-copyable type.
Jacques Pienaar
2019-07-08
1
-1
/
+1
*
Replace the implementation of Function and Module with FuncOp and ModuleOp.
River Riddle
2019-07-03
2
-4
/
+6
*
NFC: Move the Function/Module/Operation::verify methods out-of-line.
River Riddle
2019-07-02
10
-12
/
+22
*
NFC: Refactor Module to be value typed.
River Riddle
2019-07-02
15
-56
/
+52
*
NFC: Refactor Function to be value typed.
River Riddle
2019-07-01
7
-117
/
+125
*
Extract the automatic function renaming and symbol table out of Module.
River Riddle
2019-07-01
1
-7
/
+9
*
Refactor DialectConversion to use 'materializeConversion' when a type convers...
River Riddle
2019-06-28
1
-0
/
+8
*
Move the emitError/Warning/Remark utility methods out of MLIRContext and into...
River Riddle
2019-06-25
11
-114
/
+81
*
NFC: Uniformize the return of the LocationAttr 'get' methods to 'Location'.
River Riddle
2019-06-25
4
-4
/
+4
*
NFC: Remove the 'context' parameter from OperationState.
River Riddle
2019-06-22
1
-8
/
+8
*
Replace usages of 'UniquedFilename' with 'Identifier' and remove it. Identifi...
River Riddle
2019-06-19
4
-12
/
+8
*
Remove dead code.
Jing Pu
2019-06-19
1
-11
/
+0
*
NFC: Cleanup the naming scheme for registering legalization actions to be con...
River Riddle
2019-06-11
2
-3
/
+3
*
Remove the ability to directly construct a DenseElementsAttr with a raw chara...
River Riddle
2019-06-09
2
-4
/
+2
*
Add support for matchAndRewrite to the DialectConversion patterns. This also ...
River Riddle
2019-06-09
2
-12
/
+18
*
NFC: Rename FuncBuilder to OpBuilder and refactor to take a top level region ...
River Riddle
2019-06-09
8
-17
/
+17
*
Refactor the dialect conversion framework to support multi-level conversions....
River Riddle
2019-06-03
2
-2
/
+13
*
Replace a usage of std::vector with SmallVector to allow constructing wit...
River Riddle
2019-06-01
2
-10
/
+6
*
Add a templated wrapper around RewritePattern that allows for defining ma...
River Riddle
2019-06-01
2
-94
/
+61
*
Rename DialectConversion to TypeConverter and split out pattern construct...
River Riddle
2019-06-01
2
-38
/
+17
*
Add operand type iterators to Operation and cleanup usages of operand->ge...
River Riddle
2019-06-01
2
-13
/
+9
*
NFC: Rename DialectConversionPattern to ConversionPattern.
River Riddle
2019-06-01
2
-18
/
+14
*
Decouple running a conversion from the DialectConversion class. The Diale...
River Riddle
2019-06-01
2
-3
/
+5
*
Add thread-safe utilities to LLVMType to allow constructing llvm types in...
River Riddle
2019-06-01
1
-7
/
+3
*
Fix a bug in toy LateLowering where a type conversion was using 'cast' in...
River Riddle
2019-06-01
1
-1
/
+1
*
Use lambdas for nesting edsc constructs.
Nicolas Vasilache
2019-05-20
1
-11
/
+12
*
ExecutionEngine: drop PassManager integration
Alex Zinenko
2019-05-20
1
-5
/
+2
[prev]
[next]