aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'schema/tosa.fbs')
-rw-r--r--schema/tosa.fbs8
1 files changed, 4 insertions, 4 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index d64a50c..9c8add8 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -276,10 +276,10 @@ table Version {
}
table TosaTensor {
- name:string; // name of the tensor, used for solving dependency
- shape:[int32]; // shape of the tensor
- type:DType; // data type of the tensor
- npy_filename: string; // numpy array filename
+ name:string; // name of the tensor, used for solving dependency
+ shape:[int32]; // shape of the tensor
+ type:DType; // data type of the tensor
+ data: [ubyte] (force_align: 8); // raw data array if it's a constant tensor.
}
table TosaOperator {