You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/09/06 22:32:43 UTC

[GitHub] [tvm] vinx13 commented on a diff in pull request #12694: [TVMScript] IRBuilder methods for `IRModule`

vinx13 commented on code in PR #12694:
URL: https://github.com/apache/tvm/pull/12694#discussion_r964229188


##########
tests/python/unittest/test_tvmscript_ir_builder_irmodule.py:
##########
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+"""Unittests for tvm.script.ir_builder.ir"""
+import pytest
+from tvm.script.ir_builder import IRBuilder
+from tvm.script.ir_builder import ir as I
+from tvm import ir
+from tvm.ir.base import assert_structural_equal
+
+
+def test_ir_builder_irmodule():
+    with IRBuilder() as ib:  # pylint: disable=invalid-name
+        with I.ir_module():
+            pass
+
+    # the ir_module generated by IRBuilder
+    ir_module_actual = ib.get()
+
+    # the expected prim_func
+    ir_module_expected = ir.IRModule(None, None)
+
+    assert_structural_equal(ir_module_actual, ir_module_expected, map_free_vars=True)
+
+
+if __name__ == "__main__":
+    test_ir_builder_irmodule()

Review Comment:
   nit: it's preferred to use `tvm.testing.main()` here



-- 
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-unsubscribe@tvm.apache.org

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