Files
clang-p2996/mlir/test/python/ir/custom_dialect/custom.py
Maksim Levental 5192e299cf [mlir][python] remove various caching mechanisms (#70831)
This PR removes the various caching mechanisms currently in the python
bindings - both positive caching and negative caching.
2023-11-03 13:28:20 -05:00

5 lines
355 B
Python

# The purpose of this empty dialect module is to enable successfully loading the "custom" dialect.
# Without this file here (and a corresponding _cext.globals.append_dialect_search_prefix("custom_dialect")),
# PyGlobals::loadDialectModule would search and fail to find the "custom" dialect for each Operation.create("custom.op")
# (amongst other things).