You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/07 16:10:35 UTC

[incubator-tvm] branch master updated: Undefuned names: import os for line 324 & import re for line 308 (#6003)

This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new 3f13566  Undefuned names: import os for line 324 & import re for line 308 (#6003)
3f13566 is described below

commit 3f13566b8f612d9cdc4d8e5a9a4fe7824a5840f4
Author: Christian Clauss <cc...@me.com>
AuthorDate: Tue Jul 7 18:10:24 2020 +0200

    Undefuned names: import os for line 324 & import re for line 308 (#6003)
---
 python/tvm/target/target.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python/tvm/target/target.py b/python/tvm/target/target.py
index dc8c446..ef7d764 100644
--- a/python/tvm/target/target.py
+++ b/python/tvm/target/target.py
@@ -15,6 +15,8 @@
 # specific language governing permissions and limitations
 # under the License.
 """Target data structure."""
+import os
+import re
 import warnings
 import tvm._ffi