aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
authorTai Ly <tai.ly@arm.com>2023-09-19 21:30:18 +0000
committerEric Kunze <eric.kunze@arm.com>2023-11-28 14:43:26 -0800
commit254890c82f7ce3bc3d73e12b68b119e9c8747eb6 (patch)
treeda1c1056974045eb35adee835a8cd366359d04b0 /schema/tosa.fbs
parentb4d7502a8a436ec5e783c76f176cdc74d5669105 (diff)
downloadserialization_lib-254890c82f7ce3bc3d73e12b68b119e9c8747eb6.tar.gz
Add variable_name to tensors
Signed-off-by: Tai Ly <tai.ly@arm.com> Change-Id: Ia142c8b1a9e0869daefb3eef71100fd0c2a0effc
Diffstat (limited to 'schema/tosa.fbs')
-rw-r--r--schema/tosa.fbs1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index c2f834f..431efb4 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -285,6 +285,7 @@ table TosaTensor {
data: [ubyte] (force_align: 8); // raw data array if it's a constant tensor.
variable: bool; // is this a variable tensor
is_unranked: bool; // whether this is an unranked tensor
+ variable_name:string; // name for variable attribute
}
table TosaOperator {