mehrdadh commented on code in PR #12641:
URL: https://github.com/apache/tvm/pull/12641#discussion_r958694791


##########
python/tvm/micro/testing/evaluation.py:
##########
@@ -151,7 +152,8 @@ def predict_labels_aot(session, aot_executor, input_data, 
runs_per_sample=1):
     assert aot_executor.get_num_outputs() == 1
     assert runs_per_sample > 0
 
-    for sample in input_data:
+    for counter, sample in enumerate(input_data):
+        logging.info("Evaluating sample %d", counter)

Review Comment:
   f-string  doesn't pass lint when it is used with logging :(
   I very much like f-string
   
   @leandron @areusch is there a reason that we don't allow f-string with 
logging?



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