MLBEDSW-7060: Bias tensor should be in 1D shape

Always make sure the bias is a 1D tensor.

Signed-off-by: Johan Alfven <johan.alfven@arm.com>
Change-Id: Ic0cb85d4fb9d2e07b4d1b7ac6059bffa432e28a3
diff --git a/ethosu/vela/reader_util.py b/ethosu/vela/reader_util.py
index 476b70a..b5a058e 100644
--- a/ethosu/vela/reader_util.py
+++ b/ethosu/vela/reader_util.py
@@ -15,6 +15,8 @@
 # limitations under the License.
 # Description:
 # Utlity function for reading .tosa and .tflite files
+import numpy as np
+
 from .operation import Op
 from .operation import Operation
 
@@ -27,12 +29,20 @@
 
 def clone_and_reshape_tensor(src_tens, reorder, set_unique):
     tens = src_tens.clone("_reshape", set_unique)
-    tens.shape = [src_tens.shape[idx] for idx in reorder]
+    if reorder is None:
+        # 1D shape requested
+        tens.shape = [np.prod(src_tens.shape)]
+    else:
+        tens.shape = [src_tens.shape[idx] for idx in reorder]
     tens.bandwidth_shape = tens.shape
     tens.storage_shape = tens.shape
 
     if tens.values is not None:
-        tens.values = tens.values.transpose(reorder)
+        if reorder is None:
+            # 1D shape requested
+            tens.values = tens.values.reshape(tens.shape)
+        else:
+            tens.values = tens.values.transpose(reorder)
 
     op = Operation(Op.Const, tens.name)
     op.set_output_tensor(tens)