xref: /aosp_15_r20/external/executorch/backends/qualcomm/serialization/qc_binary_info.fbs (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
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