Skip to content

Commit

Permalink
ui: fix IRQs not showing up on stable UI
Browse files Browse the repository at this point in the history
Bug: 364855293
Bug: google/perfetto#882
Change-Id: If6f33fe098b4040fbd07e3331c344dab0c8dd1a7
  • Loading branch information
LalitMaganti committed Sep 9, 2024
1 parent 0a53e68 commit 7dec4a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/controller/track_decider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class TrackDecider {
select distinct t.parent_id, t.name
from track t
join _slice_track_summary using (id)
where t.type in ('track', 'gpu_track', 'cpu_track')
where t.type in ('track', 'gpu_track', '__intrinsic_cpu_track')
)
select
t.name as name,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/core_plugins/async_slices/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AsyncSlicePlugin implements Plugin {
count() as trackCount
from track t
join _slice_track_summary using (id)
where t.type in ('track', 'gpu_track', 'cpu_track')
where t.type in ('track', 'gpu_track', '__intrinsic_cpu_track')
group by parent_id, name
)
select
Expand Down

0 comments on commit 7dec4a0

Please sign in to comment.