aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClContextSchema.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl/ClContextSchema.fbs')
-rw-r--r--src/backends/cl/ClContextSchema.fbs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/backends/cl/ClContextSchema.fbs b/src/backends/cl/ClContextSchema.fbs
new file mode 100644
index 0000000000..c517d8039a
--- /dev/null
+++ b/src/backends/cl/ClContextSchema.fbs
@@ -0,0 +1,21 @@
+//
+// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+namespace armnn;
+
+file_identifier "ARMN";
+
+file_extension "armnn";
+
+table ClContext {
+ programs:[Program];
+}
+
+table Program {
+ name:string;
+ binary:[ubyte];
+}
+
+root_type ClContext; \ No newline at end of file