We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f783ec commit 14bf7ccCopy full SHA for 14bf7cc
examples/models/llama/export_llama_lib.py
@@ -800,6 +800,11 @@ def _export_llama(args) -> LLMEdgeManager: # noqa: C901
800
# pyre-fixme[16]: Module `backends` has no attribute `qualcomm`.
801
canonicalize_program(builder.edge_manager.exported_program())
802
803
+ print("lfq: exported program after to_backend, graph_module")
804
+ print(builder.edge_manager.exported_program().graph_module)
805
+ print("lfq: exported program after to_backend, print_readable")
806
+ print(builder.edge_manager.exported_program().graph_module.print_readable())
807
+
808
builder = builder.to_executorch()
809
810
if args.profile_memory:
0 commit comments