xref: /aosp_15_r20/external/armnn/samples/BareMetalDeserializedGraph.cpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #include <cstdio>
6 
main()7 int main()
8 {
9     printf("The bare metal deserialized graph was successfully executed\n");
10     return 0;
11 }
12