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 <stdio.h> | |
| #include <stdlib.h> | |
| #include "isl/flow.h" | |
| #include "isl/ctx.h" | |
| #include "isl/val.h" | |
| #include "isl/set.h" | |
| #include "isl/map.h" | |
| #include "isl/union_map.h" | |
| #include "isl/union_set.h" | |
| #include "isl/constraint.h" |
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
| # A simple log filter to turn debug logging on and off on a per-module | |
| # basis, when using tornado-style logging. Note that this works based | |
| # on the module where the log statement occurs, not the name passed to | |
| # logging.getLogger(), so it works even with libraries write directly | |
| # to the root logger. | |
| # | |
| # One drawback to this approach (as opposed to using distinct | |
| # per-module loggers and setting their levels appropriately) is that | |
| # logger.isEnabledFor(DEBUG) will return true even when called from a | |
| # module where debug output is not enabled, so modules that perform |