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 acde2c1fc3 [topi] remove comment redundancy in resize.py (#13860)
acde2c1fc3 is described below
commit acde2c1fc3b284fb68e0d0c9ca6f79872ae42c67
Author: TerranceLiang <[email protected]>
AuthorDate: Sat Jan 28 17:04:54 2023 +0800
[topi] remove comment redundancy in resize.py (#13860)
Co-authored-by: Terrance Liang <[email protected]>
---
python/tvm/topi/image/resize.py | 6 ------
1 file changed, 6 deletions(-)
diff --git a/python/tvm/topi/image/resize.py b/python/tvm/topi/image/resize.py
index 51ce204cf6..1973e0543a 100644
--- a/python/tvm/topi/image/resize.py
+++ b/python/tvm/topi/image/resize.py
@@ -813,12 +813,6 @@ def resize2d(
layout: string, optional
"NCHW", "NHWC", or "NCHWc".
- coordinate_transformation_mode: string, optional
- Describes how to transform the coordinate in the resized tensor
- to the coordinate in the original tensor.
- Refer to the ONNX Resize operator specification for details.
- Available options are "half_pixel", "align_corners" and "asymmetric".
-
method: string, optional
method of interpolation ("nearest", "linear", "bicubic")