llvm-capstone/mlir/test/python
Mehdi Amini 5e118f933b Introduce MLIR Op Properties
This new features enabled to dedicate custom storage inline within operations.
This storage can be used as an alternative to attributes to store data that is
specific to an operation. Attribute can also be stored inside the properties
storage if desired, but any kind of data can be present as well. This offers
a way to store and mutate data without uniquing in the Context like Attribute.
See the OpPropertiesTest.cpp for an example where a struct with a
std::vector<> is attached to an operation and mutated in-place:

struct TestProperties {
  int a = -1;
  float b = -1.;
  std::vector<int64_t> array = {-33};
};

More complex scheme (including reference-counting) are also possible.

The only constraint to enable storing a C++ object as "properties" on an
operation is to implement three functions:

- convert from the candidate object to an Attribute
- convert from the Attribute to the candidate object
- hash the object

Optional the parsing and printing can also be customized with 2 extra
functions.

A new options is introduced to ODS to allow dialects to specify:

  let usePropertiesForAttributes = 1;

When set to true, the inherent attributes for all the ops in this dialect
will be using properties instead of being stored alongside discardable
attributes.
The TestDialect showcases this feature.

Another change is that we introduce new APIs on the Operation class
to access separately the inherent attributes from the discardable ones.
We envision deprecating and removing the `getAttr()`, `getAttrsDictionary()`,
and other similar method which don't make the distinction explicit, leading
to an entirely separate namespace for discardable attributes.

Recommit d572cd1b06 after fixing python bindings build.

Differential Revision: https://reviews.llvm.org/D141742
2023-05-01 23:16:34 -07:00
..
dialects [MLIR][tensor] generate default builder for FromElementsOp 2023-04-30 18:44:52 -05:00
integration [mlir][python] Allow running pass manager on any operation 2023-03-01 18:17:14 -05:00
ir [mlir][bytecode] Return error instead of min version 2023-04-30 22:11:02 -07:00
lib [MLIR][python bindings] implement PyValue subclassing to enable operator overloading 2023-04-14 14:25:06 -05:00
.style.yapf [mlir][transform] failure propagation mode in sequence 2022-08-12 15:31:22 +00:00
CMakeLists.txt [mlir] Rework subclass construction in PybindAdaptors.h 2022-01-19 18:09:05 +01:00
develoment_files.py [MLIR][python] Export CAPI headers. 2021-07-29 19:06:32 +00:00
execution_engine.py [mlir][python] Allow running pass manager on any operation 2023-03-01 18:17:14 -05:00
lit.local.cfg Fix ASAN execution for the MLIR Python tests 2021-10-03 05:07:32 +00:00
pass_manager.py [mlir][python] Capture error diagnostics in exceptions 2023-03-07 14:59:22 -05:00
python_test_ops.td Introduce MLIR Op Properties 2023-05-01 23:16:34 -07:00