From 57d781883142db8a45fe98ac1a1dfacc49cba78a Mon Sep 17 00:00:00 2001 From: Tai Ly Date: Tue, 9 Apr 2024 19:31:24 +0000 Subject: [serialization_lib] Remove unused type field from Pad and Clamp This patch removes the "type" field from PadAttribute and ClampAttribute because they are unused and unneeded. Signed-off-by: Tai Ly Change-Id: I378291b340ecee86824f25b3887aa4511207db23 --- schema/tosa.fbs | 2 -- 1 file changed, 2 deletions(-) (limited to 'schema') diff --git a/schema/tosa.fbs b/schema/tosa.fbs index 7b5948b..79b83b1 100644 --- a/schema/tosa.fbs +++ b/schema/tosa.fbs @@ -185,7 +185,6 @@ table TransposeConvAttribute { table PadAttribute { pad_const: [ubyte] (force_align: 8); - type: DType; } table AxisAttribute { @@ -202,7 +201,6 @@ table ResizeAttribute { table ClampAttribute { min_val: [ubyte] (force_align: 8); max_val: [ubyte] (force_align: 8); - type: DType; } table RescaleAttribute { -- cgit v1.2.1