aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClContextSchema.fbs
blob: c517d8039a2ba517c3c9cb8141fdcdf25e8087a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;