This is an automated email from the ASF dual-hosted git repository.
syfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new ead1ebaec5 [Contrib] Remove CLML version print (#17533)
ead1ebaec5 is described below
commit ead1ebaec595dfe7b819385e95da0fdbca0f0b6a
Author: Ruihang Lai <[email protected]>
AuthorDate: Sun Nov 17 04:35:31 2024 -0500
[Contrib] Remove CLML version print (#17533)
* [Contrib] Remove CLML version print
This PR removes the CLML version print during importing tvm.
* Update clml.py
---
python/tvm/relay/op/contrib/clml.py | 8 --------
1 file changed, 8 deletions(-)
diff --git a/python/tvm/relay/op/contrib/clml.py
b/python/tvm/relay/op/contrib/clml.py
index 1bfe947a84..dace7aaab9 100644
--- a/python/tvm/relay/op/contrib/clml.py
+++ b/python/tvm/relay/op/contrib/clml.py
@@ -556,14 +556,6 @@ def clml_pattern_table():
return False
return True
- pass_context = tvm.get_global_func("transform.GetCurrentPassContext")()
- target_version = (
- pass_context.config["relay.ext.clml.target_version"]
- if "relay.ext.clml.target_version" in pass_context.config
- else 3
- )
- print("CLML Target Version: ", target_version)
-
return [
("clml.pad_conv2d", pad_conv_pattern(), check_conv),
("clml.conv2d", conv_pattern(), check_conv),