Hi, I work on the Torch-MLIR project and we are currently trying to figure out how to productionize our python packaging situation. The biggest problem appears to be how to address version skew / binary compatibility across PyTorch versions vs our native code that links against libtorch. One of my goals here is for pip install torch-mlir
(with no additional flags or version requirements) to automatically install a binary-compatible torch-mlir+torch combo.
What are the best practices for handling that?
For example, we are playing with statically linking libtorch which removes some degrees of ABI incompatibility surface area but opens up other ones.