Align the serialization schema with TOSA 0.24.0 specification

The operators are pool, conv, reshape, slice, transpose, and table.

Signed-off-by: TatWai Chong <tatwai.chong@arm.com>
Change-Id: I425ab407e699159f75834f31ad2d48e206c71749
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 4267adf..f519d1c 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -160,13 +160,13 @@
 }
 
 table PoolAttribute {
-  padding: [int32];
+  pad: [int32];
   kernel: [int32];
   stride: [int32];
 }
 
 table ConvAttribute {
-  padding: [int32];
+  pad: [int32];
   stride: [int32];
   dilation: [int32];
 }
@@ -189,11 +189,11 @@
 }
 
 table ReshapeAttribute {
-  shape: [int32];
+  new_shape: [int32];
 }
 
 table SliceAttribute {
-  begin: [int32];
+  start: [int32];
   size: [int32];
 }
 
@@ -247,11 +247,11 @@
 }
 
 table TransposeAttribute {
-  perm: [int32];
+  perms: [int32];
 }
 
 table TableAttribute {
-  table: [int32];
+  table: [int16];
 }
 
 union QuantInfo {