tlopex opened a new pull request, #19836:
URL: https://github.com/apache/tvm/pull/19836

   Copying an Analyzer handle shares the same mutable AnalyzerObj, so a pass 
had no way to snapshot accumulated facts (variable bounds, modular sets, 
rewrite/canonical bindings, integer-set domains, literal constraints, 
transitive comparisons) and keep exploring without mutating the original.
   
   This pr adds AnalyzerObj::Clone(), which allocates a fresh AnalyzerObj and 
copies each sub-analyzer's persistent state through a new per-sub-analyzer 
CopyFrom. Parent back-pointers are re-established by the fresh constructor 
rather than copied, and per-query/recursion scratch state is left default. 
Exposed to Python as Analyzer.clone().


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to