1//============================================================================ 2// 3// Copyright (c) Qualcomm Innovation Center, Inc. 4// All rights reserved 5// 6// This source code is licensed under the BSD-style license found in the 7// LICENSE file in the root directory of this source tree. 8// 9//============================================================================ 10 11namespace qnn_delegate; 12 13table BinaryInfo { 14 // Signature of binary 15 signature: string; 16 // Data of processed binary 17 data: [ubyte]; 18} 19 20root_type BinaryInfo; 21