MasterJH5574 commented on code in PR #18229:
URL: https://github.com/apache/tvm/pull/18229#discussion_r2303921141


##########
python/tvm/script/parser/core/entry.py:
##########
@@ -86,12 +87,15 @@ def parse(
         extra_vars = _default_globals()
 
     ann = {}
+    all_pyfuncs = {}
     if inspect.isfunction(program):
         ann = {program.__name__: program.__annotations__}
     elif inspect.isclass(program):
         for name, func in program.__dict__.items():
             if inspect.isfunction(func):
+                print(f"name: {name}, func: {func}, annotations: 
{func.__annotations__}")

Review Comment:
   May be removed as well.



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