torch-mlir/frontends/pytorch/test/acap_export
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
..
test_arange.py Fix dispatch of arange. 2020-11-12 22:07:23 -08:00
test_conv_nllloss_grads.py Capture backward conv and copy_ kernels. 2020-10-30 22:59:26 -07:00
test_export_ResA.py Add support for prim::GetAttr/SetAttr/CallMethod/If 2021-02-04 17:01:47 -08:00
test_export_add3.py Add TorchScript graph importer. 2020-11-23 14:20:09 -08:00
test_export_batchnorm.py More progress on PyTorch acap device capture. 2020-10-15 21:43:21 -07:00
test_export_cat.py Fix insertion point bug #102 2020-11-02 16:41:26 -08:00
test_export_conv2d_fwd.py Add support for prim::GetAttr/SetAttr/CallMethod/If 2021-02-04 17:01:47 -08:00
test_export_multi_out.py Port prior acap export tests to new dispatcher based versions. 2020-10-13 16:37:46 -07:00