fPecc commented on code in PR #12789:
URL: https://github.com/apache/tvm/pull/12789#discussion_r1029649977


##########
python/tvm/micro/model_library_format.py:
##########
@@ -277,6 +294,37 @@ def _create_empty_entry(target_device_type):
             main_func_metadata.io_sizes[target]
         )
 
+        # Now, we also add the information about the size of each input and 
output of the main
+        # function (in bytes)
+        input_dict = {}
+        for input_param in main_func_metadata.relay_primfuncs[target].params:
+            if hasattr(input_param, "checked_type"):

Review Comment:
   Hi @Mousius . I reviewed the code and noticed that the parameters of the 
primfuncs in the main_func_metadata always seem to have the checked_type set, 
so I removed the check here.



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