MasterJH5574 opened a new pull request, #14214: URL: https://github.com/apache/tvm/pull/14214
Previously `from_fx` iterates model's `named_parameters()` to fetch all model's parameters. However, the order of iteration is not deterministic and might cause flakiness and instability in deployment. This PR removes the undeterminism by using `sorted(named_parameters())`. In this way we are guaranteed to have a deterministic list of function parameters. -- 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]
