7 ms·
In MLIR, there are two representations of memory, `tensor` and `memref`, which enables you to do some high-level things[0] in SSA before "bufferizing" to memref
by superlopuh 11mo ago
In MLIR, there are two representations of memory, `tensor` and `memref`, which enables you to do some high-level things[0] in SSA before "bufferizing" to memrefs, which are eventually lowered to LLVM pointers.
[0]: https://mlir.llvm.org/docs/Dialects/TensorOps/ https://mlir.llvm.org/docs/Dialects/TensorOps/