MLBEDSW-2726: Vela crashes when marking tensor with TensorPurpose.Unknown

This commit adds a missing entry for TensorPurpose.Unknown,
mapping to MemType.Unknown in the tensor_storage_mem_type
dictionary in the ArchitectureFeatures class in
architecture_features.py

Signed-off-by: Dwight Lidman <dwight.lidman@arm.com>
Change-Id: I6c3d942e8c6f1c71c6496bdd621ca8d46ea76147
diff --git a/ethosu/vela/architecture_features.py b/ethosu/vela/architecture_features.py
index 822bc11..021597e 100644
--- a/ethosu/vela/architecture_features.py
+++ b/ethosu/vela/architecture_features.py
@@ -268,6 +268,7 @@
         }
 
         self.tensor_storage_mem_type = {
+            TensorPurpose.Unknown: MemType.Unknown,
             TensorPurpose.Weights: MemType.Permanent_NPU,
             TensorPurpose.FeatureMap: MemType.Scratch,
             TensorPurpose.LUT: MemType.Scratch,