aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorTai Ly <tai.ly@arm.com>2023-09-19 21:30:18 +0000
committerTai Ly <tai.ly@arm.com>2023-09-19 21:55:11 +0000
commitd0520b9b3a0eaf9dadc6cdb57ed42906e577d32e (patch)
tree1538ac688cbafa4e8e08b7aabe3e10bbe404c767 /schema
parent924f3094a745c1955d51fce18b488adfed5ee76b (diff)
downloadserialization_lib-d0520b9b3a0eaf9dadc6cdb57ed42906e577d32e.tar.gz
Add variable_name to tensors
Signed-off-by: Tai Ly <tai.ly@arm.com> Change-Id: Ia142c8b1a9e0869daefb3eef71100fd0c2a0effc
Diffstat (limited to 'schema')
-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 {