MLBEDSW-1497: Add Quantize operator support

Signed-off-by: Jacob Bohlin <jacob.bohlin@arm.com>
Change-Id: Iaf4d7ab9c32b0d783072c5f131a61bfebe77cc16
diff --git a/ethosu/vela/pass_packing.py b/ethosu/vela/pass_packing.py
index fff192d..c14a70b 100644
--- a/ethosu/vela/pass_packing.py
+++ b/ethosu/vela/pass_packing.py
@@ -100,7 +100,7 @@
 
 npu_post_fuse_limited_ops = set(
     # Set of post operators that should not be fused with main/elementwise ops
-    ("ConcatSliceWrite", "Sigmoid", "Tanh")
+    ("ConcatSliceWrite", "Sigmoid", "Tanh", "Quantize")
 )
 
 elem_wise_ops = elem_wise_main_ops | activation_ops | set(("Sigmoid", "Tanh"))