From 2c27e5fa7a17b700567d69249ffc0567672e06a0 Mon Sep 17 00:00:00 2001 From: Terrance Liang Date: Sat, 28 Jan 2023 12:06:10 +0800 Subject: [PATCH] [topi] remove comment redundancy in resize.py --- 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 51ce204cf6a8..1973e0543a15 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")