xref: /aosp_15_r20/external/armnn/src/backends/cl/ClContextSchema.fbs (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1//
2// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6namespace armnn;
7
8file_identifier "ARMN";
9
10file_extension "armnn";
11
12table ClContext {
13    programs:[Program];
14}
15
16table Program {
17    name:string;
18    binary:[ubyte];
19}
20
21root_type ClContext;