xref: /aosp_15_r20/external/executorch/backends/apple/coreml/runtime/delegate/model_logging_options.h (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1 //
2 // model_logging_options.h
3 //
4 // Copyright © 2024 Apple Inc. All rights reserved.
5 //
6 // Please refer to the license found in the LICENSE file in the root directory of the source tree.
7 
8 #import <string>
9 
10 namespace executorchcoreml {
11 struct ModelLoggingOptions {
12     /// If set to `true` then the delegate would log the profiling info of operations in the Program.
13     bool log_profiling_info = false;
14     /// If set to `true` then the delegate would log the value of operations the Program.
15     bool log_intermediate_tensors = false;
16 };
17 }
18