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
/
Conversion
/
StandardToLLVM
/
ConvertStandardToLLVM.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add conversions of GPU func with memory attributions to LLVM/NVVM
Alex Zinenko
2019-12-06
1
-2
/
+60
*
minor spelling tweaks
Kazuaki Ishizaki
2019-12-06
1
-1
/
+1
*
Add UnrankedMemRef Type
nmostafa
2019-12-05
1
-31
/
+164
*
Add a CL option to Standard to LLVM lowering to use alloca instead of malloc/...
Nicolas Vasilache
2019-12-04
1
-35
/
+89
*
Fix ViewOp to have at most one offset operand
Alex Zinenko
2019-12-03
1
-6
/
+11
*
Extend conversion of SubViewOp to llvm to also support cases where size and s...
Stephan Herhut
2019-12-03
1
-6
/
+24
*
Add linkage support to LLVMFuncOp
Alex Zinenko
2019-12-03
1
-2
/
+4
*
NFC: Update std.subview op to use AttrSizedOperandSegments
Lei Zhang
2019-12-02
1
-2
/
+1
*
Changes to SubViewOp to make it more amenable to canonicalization.
Mahesh Ravishankar
2019-11-20
1
-5
/
+20
*
Change conversion CLI flag from -lower-to-llvm to -convert-std-to-llvm
Alex Zinenko
2019-11-19
1
-1
/
+2
*
ConvertStandardToLLVM: replace assertion with graceful failure
Alex Zinenko
2019-11-18
1
-2
/
+2
*
Make positions of elements in MemRef descriptor private
Alex Zinenko
2019-11-14
1
-25
/
+17
*
Use MemRefDescriptor in Vector-to-LLVM convresion
Alex Zinenko
2019-11-14
1
-0
/
+5
*
Use MemRefDescriptor in Linalg-to-LLVM conversion
Alex Zinenko
2019-11-14
1
-105
/
+96
*
Concentrate memref descriptor manipulation logic in one place
Alex Zinenko
2019-11-14
1
-165
/
+174
*
Add LLVM lowering of std.subview
Nicolas Vasilache
2019-11-12
1
-0
/
+113
*
Add support for alignment attribute in std.alloc.
Nicolas Vasilache
2019-11-12
1
-63
/
+123
*
Update Linalg to use std.view
Nicolas Vasilache
2019-11-07
1
-4
/
+8
*
Add lowering of std.view to LLVM
Nicolas Vasilache
2019-11-06
1
-0
/
+126
*
Implement lowering of VectorTypeCastOp to LLVM
Nicolas Vasilache
2019-10-18
1
-13
/
+22
*
Add support for PatternRewriter::eraseOp.
River Riddle
2019-10-16
1
-2
/
+2
*
Add conversion for splat of vectors of 2+D
Nicolas Vasilache
2019-10-15
1
-48
/
+142
*
Emit LLVM IR equivalent of sizeof when lowering alloc operations
Alex Zinenko
2019-10-11
1
-12
/
+15
*
Drop obsolete code from std to llvm memref lowering
Uday Bondhugula
2019-10-11
1
-22
/
+11
*
Rename LLVM::exp and LLVM::fmuladd to LLVM::ExpOP and LLVM::FMulAddOp.
Alexander Belyaev
2019-10-11
1
-1
/
+1
*
Add unary ops and ExpOp to Standard Dialect.
Alexander Belyaev
2019-10-11
1
-25
/
+79
*
Standard-to-LLVM conversion: check that operands have LLVM types
Alex Zinenko
2019-10-10
1
-0
/
+6
*
Use llvm.func to define functions with wrapped LLVM IR function type
Alex Zinenko
2019-10-10
1
-38
/
+65
*
Replace constexpr MemRefType::kDynamicStrideOrOffset by a MemRefType:;getDyna...
Nicolas Vasilache
2019-10-04
1
-5
/
+5
*
Fix typos, NFC.
Christian Sigg
2019-10-04
1
-2
/
+2
*
Add fpext and fptrunc to the Standard dialect and includes conversion to LLVM
MLIR Team
2019-10-03
1
-3
/
+13
*
Add parentheses around boolean operators in assert
Alex Zinenko
2019-10-03
1
-2
/
+3
*
NFC: rename Conversion/ControlFlowToCFG to Conversion/LoopToStandard
Alex Zinenko
2019-10-03
1
-1
/
+1
*
Extract MemRefType::getStridesAndOffset as a free function and fix dynamic of...
Nicolas Vasilache
2019-10-02
1
-7
/
+7
*
Fix and simplify CallOp/CallIndirectOp to LLVM::CallOp conversion
Alex Zinenko
2019-10-01
1
-38
/
+4
*
Unify Linalg types by using strided memrefs
Nicolas Vasilache
2019-10-01
1
-34
/
+36
*
Normalize MemRefType lowering to LLVM as strided MemRef descriptor
Nicolas Vasilache
2019-09-30
1
-57
/
+123
*
Add TODO to revisit coupling of CallOp to MemRefType lowering
Nicolas Vasilache
2019-09-27
1
-0
/
+3
*
Promote MemRefDescriptor to a pointer to struct when passing function boundar...
Nicolas Vasilache
2019-09-27
1
-11
/
+162
*
Introduce splat op + provide its LLVM lowering
Uday Bondhugula
2019-09-24
1
-17
/
+39
*
Normalize lowering of MemRef types
Nicolas Vasilache
2019-09-24
1
-127
/
+58
*
Add integer sign- and zero-extension and truncation to standard.
Manuel Freiberger
2019-09-21
1
-2
/
+18
*
NFC: Finish replacing FunctionPassBase/ModulePassBase with OpPassBase.
River Riddle
2019-09-13
1
-2
/
+2
*
Overload LLVM::TerminatorOp::build() for empty operands list.
MLIR Team
2019-09-09
1
-8
/
+7
*
Retain address space during MLIR > LLVM conversion.
MLIR Team
2019-09-04
1
-12
/
+9
*
Add missing lowering to CFG in mlir-cpu-runner + related cleanup
Mehdi Amini
2019-09-01
1
-3
/
+3
*
Let LLVMOpLowering specify a PatternBenefit - NFC
Nicolas Vasilache
2019-08-22
1
-3
/
+3
*
Add support for LLVM lowering of binary ops on n-D vector types
Nicolas Vasilache
2019-08-20
1
-27
/
+124
*
NFC: Move LLVMIR, SDBM, and StandardOps to the Dialect/ directory.
River Riddle
2019-08-19
1
-2
/
+2
*
Refactor linalg lowering to LLVM
Nicolas Vasilache
2019-08-19
1
-4
/
+1
[next]