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