slyubomirsky commented on code in PR #16129: URL: https://github.com/apache/tvm/pull/16129#discussion_r1450829603
########## include/tvm/relax/transform.h: ########## @@ -526,6 +526,15 @@ TVM_DLL Pass ConvertLayout(Map<String, Array<String>> desired_layouts); */ TVM_DLL Pass DeadCodeElimination(Array<runtime::String> entry_functions); +/*! + * \brief Pass that changes calls to supported operators in dataflow blocks into in-place + * implementations. Supported operators will be replaced by calls to `call_tir_inplace` that invoke Review Comment: No, it refers to supported elementwise ops. We could, in principle, analyze PrimFuncs to see if they can be made in-place (I haven't thought about what that would entail) but that's not what's being done here. I'll clarify the comment. -- 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: commits-unsubscr...@tvm.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org