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;