We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b063f50 commit bd1537bCopy full SHA for bd1537b
1 file changed
backends/nxp/backend/neutron_converter_manager.py
@@ -94,6 +94,13 @@ def convert(
94
cctx.compilationOpts.dumpKernelSelectionCode = self.dump_kernel_selection_code
95
cctx.compilationOpts.useNewFlowNeutronC = use_new_flow_neutron_c
96
97
+ # Neutron-C debugging outputs
98
+ cctx.compilationOpts.verbose = True
99
+ cctx.compilationOpts.keepGraphs = True
100
+ cctx.compilationOpts.dumpAfterOptimize = "optimized_model.tflite"
101
+ cctx.compilationOpts.dumpAfterExtract = "extracted_model.tflite"
102
+ cctx.compilationOpts.dumpMicrocode = True
103
+
104
# Try to use multiprocessing for isolation, but fall back to direct execution
105
# if the environment doesn't support it (e.g., in sandcastle/build environments)
106
try:
0 commit comments