mirror of https://github.com/llvm/torch-mlir
c4e4a11e3f
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. |
||
---|---|---|
.. | ||
test_arange.py | ||
test_conv_nllloss_grads.py | ||
test_export_ResA.py | ||
test_export_add3.py | ||
test_export_batchnorm.py | ||
test_export_cat.py | ||
test_export_conv2d_fwd.py | ||
test_export_multi_out.py |