alanmacd commented on code in PR #12063:
URL: https://github.com/apache/tvm/pull/12063#discussion_r923692304


##########
tests/python/unittest/test_runtime_module_export.py:
##########
@@ -153,13 +158,13 @@ def verify_json_import_dso(obj_format):
             f.write(subgraph_json)
 
         # Get Json and module.
-        A = te.placeholder((1024,), name="A")
-        B = te.compute(A.shape, lambda *i: A(*i) + 1.0, name="B")
-        s = te.create_schedule(B.op)
-        f = tvm.build(s, [A, B], "llvm", name="myadd")
+        a = te.placeholder((1024,), name="a")
+        b = te.compute(a.shape, lambda *i: a(*i) + 1.0, name="b")
+        s = te.create_schedule(b.op)
+        f = tvm.build(s, [a, b], "llvm", name="myadd")
         try:
             ext_lib = tvm.runtime.load_module(subgraph_path, "examplejson")
-        except:
+        except:  # pylint: disable=bare-except

Review Comment:
   I didn't know what to add.



-- 
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: commits-unsubscr...@tvm.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to