From c30f495dc013a73e371dd8053a0381e4707ab309 Mon Sep 17 00:00:00 2001 From: Tim Hall Date: Mon, 15 Jun 2020 20:47:35 +0100 Subject: Code clean-up using black and flake8 - No functional change Signed-off-by: Tim Hall Change-Id: I5ab1198b9d092cd041fa9b85b2dee9900d299bfc --- ethosu/vela/numeric_util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ethosu/vela/numeric_util.py') diff --git a/ethosu/vela/numeric_util.py b/ethosu/vela/numeric_util.py index 9adf5ecb..70209fba 100644 --- a/ethosu/vela/numeric_util.py +++ b/ethosu/vela/numeric_util.py @@ -86,5 +86,6 @@ def clamp_sigmoid(x): y = 1 / (1 + math.exp(-x)) return y + def full_shape(dim, shape, fill): - return ([fill] * (dim - len(shape))) + shape \ No newline at end of file + return ([fill] * (dim - len(shape))) + shape -- cgit v1.2.1