This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit 8ad8f04b2c4abec358d69d45870e80f50e3ccc22 | |
| Author: Jon Roelofs <[email protected]> | |
| Date: Tue Apr 14 16:23:13 2020 -0600 | |
| WIP: reassociate matrix-matrix multiply chains | |
| diff --git a/mlir/examples/toy/Ch7/mlir/ToyCombine.cpp b/mlir/examples/toy/Ch7/mlir/ToyCombine.cpp | |
| index fafc3876db2..ee9a1205845 100644 | |
| --- a/mlir/examples/toy/Ch7/mlir/ToyCombine.cpp | |
| +++ b/mlir/examples/toy/Ch7/mlir/ToyCombine.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Finds the structural diff of two json files, ignoring formatting | |
| # changes that a normal diff would highlight. | |
| import json | |
| import sys | |
| def usage(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <memory> | |
| #include <iostream> | |
| struct Tree { | |
| int data; | |
| std::unique_ptr<Tree> left; | |
| std::unique_ptr<Tree> right; | |
| Tree(int data, | |
| std::unique_ptr<Tree> &&left, |
OlderNewer