comaniac commented on pull request #8775: URL: https://github.com/apache/tvm/pull/8775#issuecomment-901324425
I've checked our use cases and here is my summary: - The use of APIs such as `_CompileEngineJIT ` can be replaced directly by `te_compiler.JIT`, so it should be safe to remove them. - You might need to work on `compile_engine.py` as well? - I have a use case that has to be done in Python for reasons. This case use `compile_engine.get().lower(func, target)` in `compile_engine.py` to get a `CachedFunc` and then get its output TE tensors. Note that I cannot use `lower_call` in `compiler_engine.py` because I don't have the input tensors. It would be great if you're going to change this file to `te_compiler.py` with most of these API (especially `te_compiler.lower`) preserved. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
