IVGCVSW-5483 'Implement Loading and Saving to File'
[platform/upstream/armnn.git] / src / backends / cl / ClContextSchema.fbs
1 //
2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5
6 namespace armnn;
7
8 file_identifier "ARMN";
9
10 file_extension "armnn";
11
12 table ClContext {
13     programs:[Program];
14 }
15
16 table Program {
17     name:string;
18     binary:[ubyte];
19 }
20
21 root_type ClContext;