# Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License."""TVM operator upsampling compute."""fromtvmimporttopifromtvmimporttefrom..utilsimportsimplify
[文档]defupsampling(data,scale_h,scale_w,layout="NCHW",method="nearest_neighbor",align_corners=False,output_shape=None,):"""Perform upsampling on the data. Nearest neighbor and bilinear upsampling are supported. Parameters ---------- inputs : tvm.te.Tensor inputs is a 4-D tensor with shape [batch, channel, in_height, in_width] or [batch, in_height, in_width, channel] scale_h : float Scaling factor for height scale_w : float Scaling factor for width layout : string, optional either "NCHW" or "NHWC" method : {"bilinear", "nearest_neighbor", "bicubic"} Method to be used for upsampling. output_shape: tvm.tir.container.Array, optional Shape to return. If left None will be inferred (If shape is determined dynamically, pass out_dtype.shape as output_shape) Returns ------- output : tvm.te.Tensor 4-D with shape [batch, channel, in_height*scale_h, in_width*scale_w] or [batch, in_height*scale, in_width*scale, channel] """base_layout=layout[0:4]ifbase_layout=="NCHW":ifnotoutput_shape:# static casescaled_h=data.shape[2]*scale_hscaled_w=data.shape[3]*scale_wreshape_size=(simplify(topi.cast(te.round(scaled_h),data.shape[2].dtype)),simplify(topi.cast(te.round(scaled_w),data.shape[3].dtype)),)else:# dynamic case -- we don't need to scale; already done in shape funcreshape_size=(simplify(topi.cast(te.round(output_shape[2]),output_shape[2].dtype)),simplify(topi.cast(te.round(output_shape[3]),output_shape[3].dtype)),)eliflayout=="NHWC":ifnotoutput_shape:# static casescaled_h=data.shape[1]*scale_hscaled_w=data.shape[2]*scale_wreshape_size=(simplify(topi.cast(te.round(scaled_h),data.shape[1].dtype)),simplify(topi.cast(te.round(scaled_w),data.shape[2].dtype)),)else:# dynamic casereshape_size=(simplify(topi.cast(te.round(output_shape[1]),output_shape[1].dtype)),simplify(topi.cast(te.round(output_shape[2]),output_shape[2].dtype)),)else:raiseValueError(f"not support this layout {layout} yet")coord_trans="align_corners"ifalign_cornerselse"asymmetric"ifmethod[0:2]=="bi":method=method[2:]returntopi.image.resize2d(data,[0.0]*4,reshape_size,layout=layout,method=method,coordinate_transformation_mode=coord_trans,output_shape=output_shape,)
[文档]defupsampling3d(data,scale_d,scale_h,scale_w,layout="NCDHW",method="nearest_neighbor",coordinate_transformation_mode="half_pixel",output_shape=None,):"""Perform upsampling on the data. Nearest neighbor and bilinear upsampling are supported. Parameters ---------- inputs : tvm.te.Tensor inputs is a 5-D tensor with shape [batch, channel, in_depth, in_height, in_width] or [batch, in_depth, in_height, in_width, channel] scale_d : float Scaling factor for depth scale_h : float Scaling factor for height scale_w : float Scaling factor for width layout : string, optional either "NCDHW" or "NDHWC" method : {"trilinear", "nearest_neighbor"} Method to be used for upsampling. 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". output_shape: tvm.tir.container.Array, optional Shape to return. If left None will be inferred (If shape is determined dynamically, pass out_dtype.shape as output_shape) Returns ------- output : tvm.te.Tensor 5-D with shape [batch, channel, in_depth*scale, in_height*scale, in_width*scale] or [batch, in_depth*scale, in_height*scale, in_width*scale, channel] """base_layout=layout[0:5]ifbase_layout=="NCDHW":ifnotoutput_shape:# static casescaled_d=data.shape[2]*scale_dscaled_h=data.shape[3]*scale_hscaled_w=data.shape[4]*scale_wresize_shape=(simplify(topi.cast(te.round(scaled_d),data.shape[2].dtype)),simplify(topi.cast(te.round(scaled_h),data.shape[3].dtype)),simplify(topi.cast(te.round(scaled_w),data.shape[4].dtype)),)else:# dynamic case -- don't need to scale; already done in shape funcresize_shape=(simplify(topi.cast(te.round(output_shape[2]),data.shape[2].dtype)),simplify(topi.cast(te.round(output_shape[3]),data.shape[3].dtype)),simplify(topi.cast(te.round(output_shape[4]),data.shape[4].dtype)),)eliflayout=="NDHWC":ifnotoutput_shape:# static casescaled_d=data.shape[1]*scale_dscaled_h=data.shape[2]*scale_hscaled_w=data.shape[3]*scale_wresize_shape=(simplify(topi.cast(te.round(scaled_d),data.shape[1].dtype)),simplify(topi.cast(te.round(scaled_h),data.shape[2].dtype)),simplify(topi.cast(te.round(scaled_w),data.shape[3].dtype)),)else:# dynamic caseresize_shape=(simplify(topi.cast(te.round(output_shape[1]),data.shape[1].dtype)),simplify(topi.cast(te.round(output_shape[2]),data.shape[2].dtype)),simplify(topi.cast(te.round(output_shape[3]),data.shape[3].dtype)),)else:raiseValueError(f"not support this layout {layout} yet")ifmethod[0:3]=="tri":method=method[3:]returntopi.image.resize3d(data,[0.0]*6,resize_shape,layout=layout,method=method,coordinate_transformation_mode=coordinate_transformation_mode,)