MLBEDSW-2031: LUT support tanh/sigmoid

Uses LUT for int8/uint8 based tanh/sigmoid.

Change-Id: Ib6ac5a5c958ab9a17e47f620b22c3e22d8d60321
Signed-off-by: Louis Verhaard <louis.verhaard@arm.com>
diff --git a/ethosu/vela/fp_math.py b/ethosu/vela/fp_math.py
index 2515b77..6637561 100644
--- a/ethosu/vela/fp_math.py
+++ b/ethosu/vela/fp_math.py
@@ -21,6 +21,7 @@
 # point implementation.
 import numpy as np
 
+
 # Convert floating point to fixed point, default Q5.26
 def from_float(x, integer_bits=5):
     i32info = np.iinfo(np.int32)