MLBEDSW-6794: ResizeNearestNeighbor with HPC

- Removed half pixel centers constraint for resize nearest neightbor.
- Supported scale 2x, 4x and 8x.
- Removed test_constraint_resize_half_pixel_centers
- Regenerated SUPPORTED_OPS.md

Signed-off-by: Johan Alfven <johan.alfven@arm.com>
Change-Id: Ic3e02e9c2b2034d537c9a9841b8fb4ee433c96dc
diff --git a/ethosu/vela/tflite_graph_optimiser.py b/ethosu/vela/tflite_graph_optimiser.py
index f3ca1b6..574d298 100644
--- a/ethosu/vela/tflite_graph_optimiser.py
+++ b/ethosu/vela/tflite_graph_optimiser.py
@@ -454,7 +454,9 @@
             # use depthwise conv to select the correct value
             scaled_op = convert_resizenn_ac_to_depthwise_conv(scaled_op, upscale_factor)
         else:
-            # keep 1x1 kernel and average pool
+            # Keep 1x1 kernel and average pool, this applies both when
+            # half-pixel-centers is True and False. Calculations are the
+            # same in the reference.
             pass
 
     scaled_op.outputs = outputs