blob: c517d8039a2ba517c3c9cb8141fdcdf25e8087a4 [file] [log] [blame]
Matthew Sloyan80fbcd52021-01-07 13:28:47 +00001//
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;