From 04986c0016e59993563490fe67052371fc0e1ad2 Mon Sep 17 00:00:00 2001 From: Louis Verhaard Date: Wed, 14 Oct 2020 09:18:31 +0200 Subject: MLBEDSW-3219: Suppress CPU info for Const/Placeholder Suppress info print that Const/Placeholder/SubgraphInput are not supported on the NPU. Change-Id: I689d25481df0cd10487484c9f639e4253df081ee Signed-off-by: Louis Verhaard --- ethosu/vela/pass_packing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ethosu/vela/pass_packing.py') diff --git a/ethosu/vela/pass_packing.py b/ethosu/vela/pass_packing.py index 5673c2df..db30cd66 100644 --- a/ethosu/vela/pass_packing.py +++ b/ethosu/vela/pass_packing.py @@ -90,7 +90,7 @@ quantization_ops = set((Op.Dequantize, Op.Max, Op.Min)) cpu_ops = set((Op.Softmax, Op.LRN, Op.Shape, Op.Pad, Op.AddN)) | quantization_ops npu_dma_ops = set((Op.DMA,)) -startup_init_ops = set((Op.Const, Op.Placeholder, Op.SubgraphInput)) +startup_init_ops = Op.op_set(Op.is_startup_init_op) memory_only_ops = set((Op.Squeeze, Op.Reshape, Op.QuantizedReshape, Op.ExpandDims,)) -- cgit v1.2.1