From 7e630e3afa5591944804bee775d14dddd186793d Mon Sep 17 00:00:00 2001 From: Elen Kalda Date: Wed, 26 May 2021 11:26:17 +0100 Subject: [PATCH] [lint] Fix black whitespace errors Change-Id: I927b43df95a8db8b042bc3cf2a1f23739d102b9d --- python/tvm/topi/mali/conv2d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tvm/topi/mali/conv2d.py b/python/tvm/topi/mali/conv2d.py index 62be92cf1927..52fe011a70e9 100644 --- a/python/tvm/topi/mali/conv2d.py +++ b/python/tvm/topi/mali/conv2d.py @@ -607,7 +607,7 @@ def conv2d_winograd_nhwc_mali( ##### SCHECULE UTILITIES ##### def tile_and_bind(s, tensor, y, x, y_factor, x_factor=None): - """ tile and bind to GPU threads """ + """tile and bind to GPU threads""" x_factor = x_factor or y_factor yo, xo, yi, xi = s[tensor].tile(y, x, y_factor, x_factor) s[tensor].bind(xo, te.thread_axis("blockIdx.x")) @@ -618,7 +618,7 @@ def tile_and_bind(s, tensor, y, x, y_factor, x_factor=None): def tile_and_bind3d(s, tensor, z, y, x, z_factor=2, y_factor=None, x_factor=None): - """ tile and bind 3d """ + """tile and bind 3d""" y_factor = y_factor or z_factor x_factor = x_factor or y_factor zo, zi = s[tensor].split(z, z_factor)