This is an automated email from the ASF dual-hosted git repository.
masahi 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 97f996c fix typo (#9304)
97f996c is described below
commit 97f996cafcb1e4775cd3b77baa103f15906c0401
Author: qingchao <[email protected]>
AuthorDate: Sun Oct 17 18:47:23 2021 +0800
fix typo (#9304)
---
python/tvm/relay/op/tensor.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/tvm/relay/op/tensor.py b/python/tvm/relay/op/tensor.py
index e479289..e615bbf 100644
--- a/python/tvm/relay/op/tensor.py
+++ b/python/tvm/relay/op/tensor.py
@@ -1070,7 +1070,7 @@ def fixed_point_multiply(data, multiplier, shift):
The input tensor.
multiplier : int
The integer multiplier of the fixed point constant.
- a_max : float
+ shift : int
The integer shift of the fixed point constant.
Returns