From 48eef4981d1a55aaf3b0ac935f2a10347cb1ac2d Mon Sep 17 00:00:00 2001 From: Masahiro Masuda Date: Mon, 16 May 2022 17:40:48 +0900 Subject: [PATCH] more comment --- python/tvm/script/parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/tvm/script/parser.py b/python/tvm/script/parser.py index c03ec1f09fc2c..6f078063c7a92 100644 --- a/python/tvm/script/parser.py +++ b/python/tvm/script/parser.py @@ -552,7 +552,8 @@ def transform_Assign(self, node): 3. (Store) Var[PrimExpr] = PrimExpr 4. with scope handlers with concise scoping and var def 4.1 var = T.allocate() - 5. A call to a pure python function, consuming and producing TVMScript values + 5. A call to a pure python function, consuming and producing TVMScript values. + The outputs are inlined into the following body (no variable is created). x, y = f(...) """