Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i915-perf: add GPU frequency plot #56

Merged
merged 7 commits into from
Dec 30, 2020
Prev Previous commit
Next Next commit
Document skipping condition on i915-perf timelines
  • Loading branch information
llandwerlin-intel committed Dec 30, 2020
commit e5c07f2fac9a05b071629d27b42e223f549bda90
1 change: 1 addition & 0 deletions src/i915-perf/i915-perf-read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ int read_i915_perf_file( const char *file, StrPool &strpool, trace_info_t &trace

for (uint32_t i = 0; i < reader->n_timelines; i++)
{
// Skip the idle time
if ( reader->timelines[i].hw_id == 0xffffffff )
continue;

Expand Down