torch-mlir/frontends/pytorch/test/module_import
Sean Silva c4e4a11e3f Add support for prim::GetAttr/SetAttr/CallMethod/If
This required some invasive surgery to graph_importer.h/cpp,
specifically moving most of it into node_importer.h/cpp and relayering
it. The abstraction that it had didn't work well in the recursive
setting that happens with prim::If.

The key observation is that torch::jit::Graph doesn't really correspond
directly to anything on the MLIR side. It's a weird combination of a
context, builder, and function and just holds a `torch::jit::Block`. It
is `torch::jit::Node` and `torch::jit::Block` which form the recursive
structure analogous to MLIR's operation/region/block. So
node_importer.h/cpp makes sense as a core building block.

As part of doing this, I did venture a bit into the AcapController code,
and realize now that there is functionality duplicated there with the
ivalue importer. Will refactor that soon.
2021-02-04 17:01:47 -08:00
..
methods-debuggable-ir.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00
methods-locations.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00
methods.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00
prim.py Add support for prim::GetAttr/SetAttr/CallMethod/If 2021-02-04 17:01:47 -08:00
primitives.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00
submodules-select.py Add support for prim::GetAttr/SetAttr/CallMethod/If 2021-02-04 17:01:47 -08:00
submodules.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00
tensors.py Add initial TorchScript module importer 2021-01-28 11:55:17 -08:00