llvm-project/mlir/examples
River Riddle 4bfae66d70 Refactor the 'walk' methods for operations.
This change refactors and cleans up the implementation of the operation walk methods. After this refactoring is that the explicit template parameter for the operation type is no longer needed for the explicit op walks. For example:

    op->walk<AffineForOp>([](AffineForOp op) { ... });

is now accomplished via:

    op->walk([](AffineForOp op) { ... });

PiperOrigin-RevId: 266209552
2019-08-29 13:04:50 -07:00
..
Linalg Refactor the 'walk' methods for operations. 2019-08-29 13:04:50 -07:00
toy Update Ch.2 of the Toy tutorial. 2019-08-27 12:44:27 -07:00
CMakeLists.txt Fix build for the Linalg example dialect with MacOS 2019-04-08 19:17:56 -07:00