areusch commented on a change in pull request #8576:
URL: https://github.com/apache/tvm/pull/8576#discussion_r679512005



##########
File path: python/tvm/testing.py
##########
@@ -379,7 +379,7 @@ def _get_targets(target_str=None):
     if len(target_str) == 0:
         target_str = DEFAULT_TEST_TARGETS
 
-    target_names = set(t.strip() for t in target_str.split(";") if t.strip())
+    target_names = list(sorted(set(t.strip() for t in target_str.split(";") if 
t.strip())))

Review comment:
       ah yeah probably in order of target_str




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


Reply via email to