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 c629200 commit fad7a17Copy full SHA for fad7a17
docs/source/llm/getting-started.md
@@ -777,11 +777,14 @@ Run the export script and the ETRecord will be generated as `etrecord.bin`.
777
778
An ETDump is an artifact generated at runtime containing a trace of the model execution. For more information, see [the ETDump docs](../etdump.md).
779
780
-Include the ETDump header in your code.
+Include the ETDump header and namespace in your code.
781
```cpp
782
// main.cpp
783
784
#include <executorch/devtools/etdump/etdump_flatcc.h>
785
+
786
+using executorch::etdump::ETDumpGen;
787
+using torch::executor::etdump_result;
788
```
789
790
Create an Instance of the ETDumpGen class and pass it to the Module constructor.
0 commit comments