pyjhzwh opened a new pull request #4982: fix unordered dictionary problem for python version under 3.6 URL: https://github.com/apache/incubator-tvm/pull/4982 For python version below 3.6, the order of the key in a dictionary is not the insertion order of keys. It will break the dependency order of each ops, causing KeyError. Instead, we can use a list of (node_name, node) instead of a dictionary.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
