File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -313,6 +313,8 @@ event listener for just-in-time (JIT) profiling.
313
313
(`USE_INTEL_JITEVENTS` set to `1` in the build configuration), or
314
314
* [OProfile](http://oprofile.sourceforge.net/news/) (`USE_OPROFILE_JITEVENTS` set to `1`
315
315
in the build configuration).
316
+ * [Perf](https://perf.wiki.kernel.org) (`USE_PERF_JITEVENTS` set to `1`
317
+ in the build configuration). This integration is enabled by default.
316
318
317
319
### ` ENABLE_GDBLISTENER `
318
320
Original file line number Diff line number Diff line change @@ -342,7 +342,8 @@ Or similary with `perf` :
342
342
343
343
```
344
344
$ ENABLE_JITPROFILING=1 perf record -o /tmp/perf.data --call-graph dwarf ./julia /test/fastmath.jl
345
- $ perf report --call-graph -G
345
+ $ perf inject --jit --input /tmp/perf.data --output /tmp/perf-jit.data
346
+ $ perf report --call-graph -G -i /tmp/perf-jit.data
346
347
```
347
348
348
349
There are many more interesting things that you can measure about your program, to get a comprehensive list
You can’t perform that action at this time.
0 commit comments