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 e8604a6 commit 178d8aaCopy full SHA for 178d8aa
profiling_notes.md
@@ -15,6 +15,8 @@ Basic recording of an ocaml program
15
perf record --call-graph dwarf -- program-to-run program-arguments
16
# exclude child process (-i), user cycles
17
perf record --call-graph dwarf -i -e cycles:u -- program-to-run program-arguments
18
+# expand sampled stack (which will make the traces larger) to capture deeper call stacks
19
+perf record --call-graph dwarf,32768 -i -e cycles:u -- program-to-run program-arguments
20
```
21
22
Basic viewing of a perf recording
0 commit comments