From 980f61f5c1c4463b37832193569480a7b2a83f54 Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Mon, 18 Mar 2024 11:02:01 +0900 Subject: [PATCH] [res] Add UINT4 in circle_schema (#12757) This will add UINT4 datatype in circle_schema v0.8. ONE-DCO-1.0-Signed-off-by: SaeHie Park --- res/CircleSchema/0.8/circle_schema.fbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/res/CircleSchema/0.8/circle_schema.fbs b/res/CircleSchema/0.8/circle_schema.fbs index 64aaea99452..460fa43ee11 100644 --- a/res/CircleSchema/0.8/circle_schema.fbs +++ b/res/CircleSchema/0.8/circle_schema.fbs @@ -32,7 +32,7 @@ // Version 0.5: Base up to TensorFlow Lite v2.10.1 schema. // Version 0.6: Base up to TensorFlow Lite v2.13.0 schema. // Version 0.7: Base up to TensorFlow Lite v2.15.0 schema, deprecate data_format in Subgraph table -// Version 0.8: GRU op is added. +// Version 0.8: GRU op is added. UINT4 is added. namespace circle; @@ -46,6 +46,7 @@ file_extension "circle"; // The type of data stored in a tensor. enum TensorType : byte { + UINT4 = -1, FLOAT32 = 0, FLOAT16 = 1, INT32 = 2,