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



##########
File path: tests/python/relay/aot/aot_test_utils.py
##########
@@ -39,6 +40,30 @@
 _LOG = logging.getLogger(__name__)
 
 
+class AOTTestNetwork(NamedTuple):
+    """Class to describe a network under test
+
+    Parameters
+    ----------
+    module: tvm.IRModule
+        IRModule to generate AOT executor for
+    inputs: Dict[str, np.array]
+        Dict of input names to value arrays
+    outputs: List[np.array]
+        Ordered list of output value arrays
+    name: str
+        Name to use for this network
+    params: Optional[Dict[str, np.array]]
+        Dict of parameter names to value arrays
+    """
+
+    module: tvm.IRModule

Review comment:
       disregard :)




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