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
/
lib
/
Transforms
/
LoopTiling.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[mlir] NFC: Remove Value::operator* and Value::operator-> now that Value is p...
River Riddle
2020-01-11
1
-1
/
+1
*
NFC: Replace ValuePtr with Value and remove it now that Value is value-typed.
River Riddle
2019-12-23
1
-6
/
+5
*
Adjust License.txt file to use the LLVM license
Mehdi Amini
2019-12-23
1
-13
/
+4
*
NFC: Introduce new ValuePtr/ValueRef typedefs to simplify the transition to V...
River Riddle
2019-12-22
1
-5
/
+6
*
Minor spelling tweaks
Kazuaki Ishizaki
2019-12-09
1
-1
/
+1
*
NFC: Remove trivial builder get methods.
River Riddle
2019-10-17
1
-2
/
+2
*
NFC - clean up op accessor usage, std.load/store op verify, other stale info
Uday Bondhugula
2019-09-27
1
-1
/
+1
*
NFC: Finish replacing FunctionPassBase/ModulePassBase with OpPassBase.
River Riddle
2019-09-13
1
-1
/
+1
*
NFC: Move AffineOps dialect to the Dialect sub-directory.
River Riddle
2019-08-20
1
-1
/
+1
*
Change from llvm::make_unique to std::make_unique
Jacques Pienaar
2019-08-17
1
-1
/
+1
*
Express ownership transfer in PassManager API through std::unique_ptr (NFC)
Mehdi Amini
2019-08-12
1
-2
/
+3
*
NFC: Rename Function to FuncOp.
River Riddle
2019-07-10
1
-1
/
+1
*
NFC: Refactor Function to be value typed.
River Riddle
2019-07-01
1
-1
/
+1
*
NFC: Rename FuncBuilder to OpBuilder and refactor to take a top level region ...
River Riddle
2019-06-09
1
-3
/
+3
*
Remove "size" property of affine maps.
MLIR Team
2019-06-01
1
-2
/
+2
*
Add support for using llvm::dyn_cast/cast/isa for operation casts and rep...
River Riddle
2019-05-20
1
-1
/
+1
*
Automated rollback of changelist 247778391.
MLIR Team
2019-05-20
1
-1
/
+1
*
Add support for using llvm::dyn_cast/cast/isa for operation casts and rep...
River Riddle
2019-05-20
1
-1
/
+1
*
Cleanups and simplifications to code, noticed by inspection. NFC.
Chris Lattner
2019-05-20
1
-3
/
+0
*
Simplify the emission of various diagnostics created in Analysis/ and Tra...
River Riddle
2019-05-10
1
-6
/
+3
*
Prepend an "affine-" prefix to Affine pass option names - NFC
Nicolas Vasilache
2019-05-06
1
-2
/
+2
*
Fix bug in LoopTiling where a loop with trip count of 1 caused a division...
MLIR Team
2019-05-06
1
-1
/
+1
*
Add support for basic remark diagnostics. This is the minimal functionali...
River Riddle
2019-05-06
1
-1
/
+1
*
Create a LoopUtil function to return perfectly nested loop set
MLIR Team
2019-04-05
1
-5
/
+1
*
Fix bug in LoopTiling where creation of tile-space loop upper bound did n...
Andy Davis
2019-04-05
1
-6
/
+16
*
Fix MacOS build
Mehdi Amini
2019-04-01
1
-1
/
+2
*
Replace usages of Instruction with Operation in the Transforms/ directory.
River Riddle
2019-03-29
1
-3
/
+3
*
Replace usages of Instruction with Operation in the /Analysis directory.
River Riddle
2019-03-29
1
-2
/
+1
*
Introduce affine terminator
Alex Zinenko
2019-03-29
1
-5
/
+5
*
Replace usages of Instruction with Operation in the /IR directory.
River Riddle
2019-03-29
1
-14
/
+13
*
Make FunctionPass::getFunction() return a reference to the function, instead of
Chris Lattner
2019-03-29
1
-2
/
+2
*
Replace usages of "operator->" with "." for the AffineOps.
River Riddle
2019-03-29
1
-38
/
+38
*
NFC: Rename the 'for' operation in the AffineOps dialect to 'affine.for' and ...
River Riddle
2019-03-29
1
-1
/
+2
*
Remove OpPointer, cleaning up a ton of code. This also moves Ops to using
Chris Lattner
2019-03-29
1
-20
/
+19
*
Cleanup for changes failing with std=c++11
Jacques Pienaar
2019-03-29
1
-0
/
+3
*
Remove some statements that required >C++11, add includes and qualify names. ...
Jacques Pienaar
2019-03-29
1
-0
/
+1
*
Move the success/failure functions out of LogicalResult and into the mlir nam...
River Riddle
2019-03-29
1
-2
/
+2
*
Rename Status to LogicalResult to avoid conflictions with the Status in xla/t...
River Riddle
2019-03-29
1
-4
/
+4
*
Add a basic model to set tile sizes + some cleanup
Uday Bondhugula
2019-03-29
1
-15
/
+149
*
Move UtilResult into the Support directory and rename it to Status. Status pr...
River Riddle
2019-03-29
1
-5
/
+5
*
Change Pass:getFunction() to return pointer instead of ref - NFC
Uday Bondhugula
2019-03-29
1
-1
/
+1
*
Remove PassResult and have the runOnFunction/runOnModule functions return voi...
River Riddle
2019-03-29
1
-6
/
+4
*
Port all of the existing passes over to the new pass manager infrastructure. ...
River Riddle
2019-03-29
1
-7
/
+5
*
Refactor AffineExprFlattener and move FlatAffineConstraints out of IR into
Uday Bondhugula
2019-03-29
1
-1
/
+1
*
Define a PassID class to use when defining a pass. This allows for the type u...
River Riddle
2019-03-29
1
-3
/
+1
*
NFC: Refactor the files related to passes.
River Riddle
2019-03-29
1
-1
/
+1
*
Misc. updates/fixes to analysis utils used for DMA generation; update DMA
Uday Bondhugula
2019-03-29
1
-3
/
+4
*
Add -tile-sizes command line option for loop tiling; clean up cl options for
Uday Bondhugula
2019-03-29
1
-10
/
+20
*
Automated rollback of changelist 232717775.
Uday Bondhugula
2019-03-29
1
-2
/
+1
*
NFC: Rename the 'for' operation in the AffineOps dialect to 'affine.for'. The...
River Riddle
2019-03-29
1
-1
/
+2
[next]