-
Notifications
You must be signed in to change notification settings - Fork 20
feat: add samply profiler support #338
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
Open
not-matthias
wants to merge
15
commits into
main
Choose a base branch
from
cod-2599-runner-migrate-perf-to-new-profiler-agnostic-data-format
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
009bff1
feat(walltime): add Profiler trait abstraction
not-matthias 2fcc338
refactor(walltime): rename IntegrationMode::Perf to Walltime
not-matthias c288d7d
refactor(walltime): rename FifoCommand::PingPerf to PingProfiler
not-matthias c075c46
refactor(walltime): move perf module under profiler/
not-matthias 260c151
refactor(walltime): rename PerfMetadata to WalltimeMetadata
not-matthias 2008cf1
refactor(walltime): port PerfRunner to Profiler trait
not-matthias 5922f6b
feat(walltime): rename CODSPEED_PERF_ENABLED to CODSPEED_PROFILER_ENA…
not-matthias ae87abb
fix(fifo): use O_RDWR to open FIFOs on all Unix platforms
not-matthias e108a33
fix(walltime): use mach_absolute_time for FIFO timestamps on macOS
not-matthias af25ae3
feat(walltime): add samply profiler for macOS
not-matthias 5fc9454
refactor(walltime): share Linux profiler sysctl setup
not-matthias e814a9e
feat(walltime): bundle samply via library crate
not-matthias 604f152
fix(walltime): disable PYTHON_PERF_JIT_SUPPORT on macOS
not-matthias a7ef859
refactor(walltime): rename Profiler::wrap to wrap_command
not-matthias c7f0146
refactor: rename Benchmark FIFO commands/markers to Profiler/Round
not-matthias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| use clap::Parser; | ||
|
|
||
| use crate::prelude::*; | ||
|
|
||
| /// Run the bundled samply profiler. Arguments after `samply` are forwarded | ||
| /// verbatim to samply's own CLI parser. | ||
| #[derive(Debug, clap::Args)] | ||
| pub struct SamplyArgs { | ||
| #[arg(trailing_var_arg = true, allow_hyphen_values = true)] | ||
| args: Vec<std::ffi::OsString>, | ||
| } | ||
|
|
||
| pub fn run(args: SamplyArgs) -> Result<()> { | ||
| use ::samply::cli; | ||
|
|
||
| let argv = std::iter::once(std::ffi::OsString::from("samply")).chain(args.args); | ||
| let opt = cli::Opt::parse_from(argv); | ||
|
|
||
| // samply spins up its own tokio runtime internally, so it must run on a | ||
|
not-matthias marked this conversation as resolved.
|
||
| // thread that isn't already inside our `#[tokio::main]` runtime. | ||
| std::thread::scope(|s| { | ||
| s.spawn(|| match opt.action { | ||
| #[cfg(any( | ||
| target_os = "android", | ||
| target_os = "macos", | ||
| target_os = "linux", | ||
| target_os = "windows" | ||
| ))] | ||
| cli::Action::Record(a) => ::samply::do_record_action(a), | ||
| _ => unimplemented!("Only `samply record` is supported"), | ||
| }) | ||
| .join() | ||
| .map_err(|_| anyhow::anyhow!("samply thread panicked")) | ||
| })?; | ||
|
|
||
| Ok(()) | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.