perf-sched.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. perf-sched(1)
  2. ==============
  3. NAME
  4. ----
  5. perf-sched - Tool to trace/measure scheduler properties (latencies)
  6. SYNOPSIS
  7. --------
  8. [verse]
  9. 'perf sched' {record|latency|replay|trace}
  10. DESCRIPTION
  11. -----------
  12. There's four variants of perf sched:
  13. 'perf sched record <command>' to record the scheduling events
  14. of an arbitrary workload.
  15. 'perf sched latency' to report the per task scheduling latencies
  16. and other scheduling properties of the workload.
  17. 'perf sched trace' to see a detailed trace of the workload that
  18. was recorded.
  19. 'perf sched replay' to simulate the workload that was recorded
  20. via perf sched record. (this is done by starting up mockup threads
  21. that mimic the workload based on the events in the trace. These
  22. threads can then replay the timings (CPU runtime and sleep patterns)
  23. of the workload as it occured when it was recorded - and can repeat
  24. it a number of times, measuring its performance.)
  25. OPTIONS
  26. -------
  27. -D::
  28. --dump-raw-trace=::
  29. Display verbose dump of the sched data.
  30. SEE ALSO
  31. --------
  32. linkperf:perf-record[1]