From 4881c29247d4b411de446b13d9bd58ea93737aac Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Wed, 1 Nov 2023 16:12:07 -0700 Subject: Add support for local_bound attribute local_bound is used to determine when fast convolution algorithms can be used in implementing the operation. Signed-off-by: Eric Kunze Change-Id: I9970a2544e90a620f46ac4d3d01cec90a15710a9 --- schema/tosa.fbs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'schema/tosa.fbs') diff --git a/schema/tosa.fbs b/schema/tosa.fbs index 431efb4..21d3dad 100644 --- a/schema/tosa.fbs +++ b/schema/tosa.fbs @@ -144,6 +144,7 @@ union Attribute { NegateAttribute, CustomAttribute, FFTAttribute, + RFFTAttribute, } table PoolAttribute { @@ -161,6 +162,7 @@ table ConvAttribute { dilation: [int32]; input_zp: int32; weight_zp: int32; + local_bound: bool; } table TransposeConvAttribute { @@ -169,6 +171,7 @@ table TransposeConvAttribute { output_shape: [int32]; input_zp: int32; weight_zp: int32; + local_bound: bool; } table PadAttribute { @@ -269,6 +272,11 @@ table CustomAttribute { table FFTAttribute { inverse: bool; + local_bound: bool; +} + +table RFFTAttribute { + local_bound: bool; } table Version { -- cgit v1.2.1