Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/profiler/test_profiler_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"torch/profiler/profiler.py(...): _transit_action": KEEP_ELLIPSES,
"<built-in method __exit__ of torch._C.DisableTorchFunctionSubclass object at 0xXXXXXXXXXXXX>": PRUNE_ALL,
"cudaStreamIsCapturing": PRUNE_ALL,
"cudaOccupancyMaxActiveBlocksPerMultiprocessorWithFlags": PRUNE_ALL,

# These show up only on CUDA, prune them so the CUDA and CPU expected results can be the same
"cudaGetDeviceCount": PRUNE_ALL,
"cudaGetDeviceProperties_v2": PRUNE_ALL,
}

# ROCTracer is currently not producing events that profiler can extract. We
Expand Down