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
*
[MLIR] Fix broken link locations after move to monorepo
Daniel Galvez
2020-01-14
7
-8
/
+8
*
[mlir] NFC: Remove Value::operator* and Value::operator-> now that Value is p...
River Riddle
2020-01-11
17
-63
/
+58
*
NFC: Replace ValuePtr with Value and remove it now that Value is value-typed.
River Riddle
2019-12-23
28
-258
/
+245
*
Adjust License.txt file to use the LLVM license
Mehdi Amini
2019-12-23
100
-1300
/
+400
*
NFC: Introduce new ValuePtr/ValueRef typedefs to simplify the transition to V...
River Riddle
2019-12-22
28
-261
/
+272
*
NFC: Use this-> to appease GCC bug related to template lambda.
River Riddle
2019-12-17
7
-7
/
+7
*
NFC: Use TypeSwitch to simplify existing code.
River Riddle
2019-12-17
7
-99
/
+70
*
Fix minor spelling tweaks.
shanshanpt
2019-12-09
6
-6
/
+6
*
Minor spelling tweaks
Kazuaki Ishizaki
2019-12-09
7
-7
/
+7
*
minor spelling tweaks
Kazuaki Ishizaki
2019-12-06
1
-1
/
+1
*
minor spelling tweaks
Kazuaki Ishizaki
2019-12-04
3
-6
/
+6
*
Introduce Linkage attribute to the LLVM dialect
Alex Zinenko
2019-12-02
2
-4
/
+6
*
NFC: Remove unnecessarily guarded tablegen includes.
River Riddle
2019-11-22
15
-42
/
+0
*
Fix mismatched-tags warning
Jacques Pienaar
2019-11-16
1
-1
/
+1
*
Modify tutorial and other documentation for consistency, clarity, and correct...
Lucy Fox
2019-11-15
1
-2
/
+2
*
Move Affine to Standard conversion to lib/Conversion
Alex Zinenko
2019-11-14
4
-2
/
+6
*
Add support for nested symbol references.
River Riddle
2019-11-11
8
-12
/
+12
*
Fix segfault (nullptr dereference) when passing a non-existent file to the To...
Mehdi Amini
2019-11-09
6
-0
/
+12
*
Add Ch-7 of the toy tutorial detailing how to define new types.
River Riddle
2019-11-07
23
-0
/
+4516
*
NFC: Tidy up the implementation of operations in the Toy tutorial
River Riddle
2019-11-06
10
-202
/
+246
*
NFC: Uniformize parser naming scheme in Toy tutorial to camelCase and tidy a ...
River Riddle
2019-11-06
36
-1306
/
+1225
*
NFC: Use #ifndef in various .td files instead of #ifdef and #else
Lei Zhang
2019-10-31
8
-38
/
+19
*
Convert the Canonicalize and CSE passes to generic Operation Passes.
River Riddle
2019-10-24
4
-18
/
+25
*
NFC: Remove references to the toy.generic attribute.
River Riddle
2019-10-23
5
-35
/
+5
*
Cleanup and rewrite Ch-4.md.
River Riddle
2019-10-21
6
-2
/
+20
*
NFC: Fix remaining usages of MulOp as matrix multiplication.
River Riddle
2019-10-21
3
-60
/
+3
*
Fix minor spelling tweaks (NFC)
Kazuaki Ishizaki
2019-10-20
15
-27
/
+27
*
Add SourceMgrDiagnosticHandler to toy
Jacques Pienaar
2019-10-19
3
-9
/
+15
*
Use new eraseOp instead of replaceOp with empty values
Geoffrey Martin-Noble
2019-10-19
1
-1
/
+1
*
NFC: Remove trivial builder get methods.
River Riddle
2019-10-17
10
-40
/
+40
*
Add Ch.6 of the Toy tutorial.
River Riddle
2019-10-17
23
-0
/
+3680
*
Fix invalid transpose in example and add proper verification.
River Riddle
2019-10-16
8
-8
/
+74
*
Add Ch.5 of the toy tutorial.
River Riddle
2019-10-16
25
-2296
/
+1473
*
Add support for inlining toy call operations.
River Riddle
2019-10-16
6
-7
/
+67
*
Fix typo in tutorial.
reinerp
2019-10-16
2
-2
/
+2
*
Code cleanups on Ch.4
River Riddle
2019-10-16
7
-92
/
+121
*
Update Chapter 4 of the Toy tutorial
Sana Damani
2019-10-16
17
-1358
/
+1005
*
NFC: Remove NoSideEffect traits from all ops except for ConstantOp.
River Riddle
2019-10-16
1
-4
/
+4
*
NFC: Various code cleanups for Ch3.
River Riddle
2019-10-16
3
-50
/
+56
*
NFC: Split out ToyOpsIncGen into a separate CMakeLists.txt.
River Riddle
2019-10-15
6
-10
/
+13
*
Update Chapter 3 to demonstrate pattern match and rewrite optimizations
Sana Damani
2019-10-15
12
-907
/
+804
*
Merge Ch3 of the Toy tutorial into chapter 2.
River Riddle
2019-10-14
6
-88
/
+526
*
Use llvm.func to define functions with wrapped LLVM IR function type
Alex Zinenko
2019-10-10
1
-12
/
+11
*
Fix typos, NFC.
Christian Sigg
2019-10-04
10
-26
/
+26
*
Normalize lowering of MemRef types
Nicolas Vasilache
2019-09-24
1
-6
/
+17
*
Add convenience methods to set an OpBuilder insertion point after an Operatio...
Mehdi Amini
2019-09-23
1
-2
/
+1
*
NFC: Pass OperationState by reference instead of by pointer.
River Riddle
2019-09-20
6
-112
/
+112
*
Unify error messages to start with lower-case.
MLIR Team
2019-09-18
10
-36
/
+36
*
Refactor the pass manager to support operations other than FuncOp/ModuleOp.
River Riddle
2019-09-02
2
-3
/
+3
*
Update Ch.2 of the Toy tutorial.
River Riddle
2019-08-27
5
-223
/
+207
[next]