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
/
LoopFusion.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Replace usages of Instruction with Operation in the /Analysis directory.
River Riddle
2019-03-29
1
-2
/
+2
*
Introduce affine terminator
Alex Zinenko
2019-03-29
1
-3
/
+3
*
Replace usages of Instruction with Operation in the /IR directory.
River Riddle
2019-03-29
1
-29
/
+29
*
Make FunctionPass::getFunction() return a reference to the function, instead of
Chris Lattner
2019-03-29
1
-4
/
+4
*
Replace usages of "Op::operator->" with ".".
River Riddle
2019-03-29
1
-19
/
+19
*
Replace usages of "operator->" with "." for the AffineOps.
River Riddle
2019-03-29
1
-40
/
+39
*
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
-14
/
+14
*
Remove const from Value, Instruction, Argument, and the various methods on the
Chris Lattner
2019-03-29
1
-1
/
+1
*
Remove some statements that required >C++11, add includes and qualify names. ...
Jacques Pienaar
2019-03-29
1
-0
/
+1
*
Rename BlockList into Region
Alex Zinenko
2019-03-29
1
-2
/
+2
*
Change getMemoryFootprintBytes emitError to a warning
Uday Bondhugula
2019-03-29
1
-1
/
+0
*
Add a basic model to set tile sizes + some cleanup
Uday Bondhugula
2019-03-29
1
-16
/
+31
*
Convert ambiguous bool returns in /Analysis to use Status instead.
River Riddle
2019-03-29
1
-13
/
+14
*
Use FlatAffineConstraints::unionBoundingBox to perform slice bounds union for...
MLIR Team
2019-03-29
1
-77
/
+106
*
Change Pass:getFunction() to return pointer instead of ref - NFC
Uday Bondhugula
2019-03-29
1
-1
/
+1
*
Handle MemRefRegion::compute return value in loop fusion pass (NFC).
MLIR Team
2019-03-29
1
-8
/
+27
*
Remove hidden flag from fusion CL options
Uday Bondhugula
2019-03-29
1
-4
/
+4
*
NFC. Move all of the remaining operations left in BuiltinOps to StandardOps. ...
River Riddle
2019-03-29
1
-1
/
+0
*
Use consistent names for dialect op source files
Lei Zhang
2019-03-29
1
-1
/
+1
*
Loop fusion for input reuse.
MLIR Team
2019-03-29
1
-43
/
+415
*
Remove PassResult and have the runOnFunction/runOnModule functions return voi...
River Riddle
2019-03-29
1
-3
/
+2
*
Port all of the existing passes over to the new pass manager infrastructure. ...
River Riddle
2019-03-29
1
-9
/
+7
*
Temp change in FlatAffineConstraints::getSliceBounds() to deal with TODO in
Uday Bondhugula
2019-03-29
1
-2
/
+1
*
Loop fusion comand line options cleanup
Uday Bondhugula
2019-03-29
1
-10
/
+25
*
Refactor AffineExprFlattener and move FlatAffineConstraints out of IR into
Uday Bondhugula
2019-03-29
1
-1
/
+1
*
Internal change
MLIR Team
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
*
Extend/improve getSliceBounds() / complete TODO + update unionBoundingBox
Uday Bondhugula
2019-03-29
1
-11
/
+15
*
NFC: Refactor the files related to passes.
River Riddle
2019-03-29
1
-1
/
+1
*
Support fusing producer loop nests which write to a memref which is live out,...
MLIR Team
2019-03-29
1
-21
/
+96
*
LoopFusion: perform a series of loop interchanges to increase the loop depth ...
MLIR Team
2019-03-29
1
-0
/
+141
*
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
*
Adds the ability to compute the MemRefRegion of a sliced loop nest. Utilizes ...
MLIR Team
2019-03-29
1
-11
/
+27
*
Refactor the affine analysis by moving some functionality to IR and some to A...
River Riddle
2019-03-29
1
-1
/
+1
*
Loop fusion improvements:
MLIR Team
2019-03-29
1
-7
/
+28
*
Remove InstWalker and move all instruction walking to the api facilities on F...
River Riddle
2019-03-29
1
-46
/
+44
*
Refactor common code getting memref access in getMemRefRegion - NFC
Uday Bondhugula
2019-03-29
1
-3
/
+4
*
Remove remaining usages of OperationInst in lib/Transforms.
River Riddle
2019-03-29
1
-72
/
+62
*
Replace the walkOps/visitOperationInst variants from the InstWalkers with the...
River Riddle
2019-03-29
1
-2
/
+2
*
Update dma-generate pass to (1) work on blocks of instructions (instead of just
Uday Bondhugula
2019-03-29
1
-4
/
+3
*
Promote local buffers created post fusion to higher memory space
Uday Bondhugula
2019-03-29
1
-8
/
+54
*
Define the AffineForOp and replace ForInst with it. This patch is largely mec...
River Riddle
2019-03-29
1
-94
/
+106
*
Fix ASAN issue: snapshot edge list before loop which can modify this list.
MLIR Team
2019-03-29
1
-3
/
+15
*
LoopFusion: insert the source loop nest slice at a depth in the destination l...
MLIR Team
2019-03-29
1
-23
/
+90
*
Support fusing loop nests which require insertion into a new instruction Bloc...
MLIR Team
2019-03-29
1
-89
/
+203
*
Recommit: Define a AffineOps dialect as well as an AffineIfOp operation. Repl...
River Riddle
2019-03-29
1
-12
/
+12
*
Automated rollback of changelist 231318632.
Nicolas Vasilache
2019-03-29
1
-12
/
+12
*
Define a AffineOps dialect as well as an AffineIfOp operation. Replace all in...
River Riddle
2019-03-29
1
-12
/
+12
[prev]
[next]