comaniac commented on a change in pull request #8352:
URL: https://github.com/apache/tvm/pull/8352#discussion_r660150398
##########
File path: tests/python/relay/test_ir_text_printer.py
##########
@@ -284,5 +284,12 @@ def test_optional_info():
assert txt.count("/* ty=int32 */") == 3
+def test_slash_in_identifier():
+ x = relay.var("base/x")
+ y = relay.var("base/y")
+ z = x + y
+ txt = astext(z)
Review comment:
You might need to check the output of `astext` to make sure the names
are preserved.
--
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]