Skip to content

Commit 22171e3

Browse files
branczclaude
andauthored
Fix hide cuda preset (#6063)
* Add libcudnn_graph.so and libparcagpucupti.so to hide CUDA internals preset Extended the hide_cuda_internals filter preset to exclude additional CUDA libraries from profiles: libcudnn_graph.so and libparcagpucupti.so. * Remove libparcgpcupti.so from hide CUDA internals preset Removed the outdated libparcgpcupti.so entry from the filter preset. * Add libcudnn.so to hide CUDA internals preset Include libcudnn.so in the CUDA internals filter to exclude it from profiles. --------- Co-authored-by: Claude <[email protected]>
1 parent 83c48ba commit 22171e3

File tree

1 file changed

+15
-3
lines changed
  • ui/packages/shared/profile/src/ProfileView/components/ProfileFilters

1 file changed

+15
-3
lines changed

ui/packages/shared/profile/src/ProfileView/components/ProfileFilters/filterPresets.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,31 @@ export const filterPresets: FilterPreset[] = [
108108
type: 'frame',
109109
field: 'binary',
110110
matchType: 'not_contains',
111-
value: 'libparcgpcupti.so',
111+
value: 'libcudart.so',
112112
},
113113
{
114114
type: 'frame',
115115
field: 'binary',
116116
matchType: 'not_contains',
117-
value: 'libcudart.so',
117+
value: 'libcuda.so',
118118
},
119119
{
120120
type: 'frame',
121121
field: 'binary',
122122
matchType: 'not_contains',
123-
value: 'libcuda.so',
123+
value: 'libcudnn.so',
124+
},
125+
{
126+
type: 'frame',
127+
field: 'binary',
128+
matchType: 'not_contains',
129+
value: 'libcudnn_graph.so',
130+
},
131+
{
132+
type: 'frame',
133+
field: 'binary',
134+
matchType: 'not_contains',
135+
value: 'libparcagpucupti.so',
124136
},
125137
],
126138
},

0 commit comments

Comments
 (0)