Skip to content
Merged
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
4 changes: 3 additions & 1 deletion src/run/runner/wall_time/perf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ impl PerfRunner {
|| config.command.contains("uv")
|| config.command.contains("python")
{
(UnwindingMode::Dwarf, Some(65528))
// Max supported stack size is 64KiB, but this will increase the file size by a lot. In
// order to allow uploads and maintain accuracy, we limit this to 8KiB.
(UnwindingMode::Dwarf, Some(8 * 1024))
} else {
// Default to dwarf unwinding since it works well with most binaries.
debug!("No call graph mode detected, defaulting to dwarf");
Expand Down