Skip to content
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

Add initial support to profile guest runs #274

Merged
merged 4 commits into from Sep 13, 2022
Merged

Add initial support to profile guest runs #274

merged 4 commits into from Sep 13, 2022

Conversation

shkoo
Copy link
Contributor

@shkoo shkoo commented Sep 12, 2022

This is accessible with the --prof-out option of r0vm, or by using risc0_zkvm::host::profiler::Profiler.

It produces output in a format suitable for use with google's pprof, but does not yet supply full stack traces.

This is accessible with the --prof-out option of r0vm, or by using risc0_zkvm::host::profiler::Profiler.

It produces output in a format suitable for use with google's pprof, but does not yet
supply full stack traces.
@shkoo shkoo marked this pull request as ready for review September 12, 2022 16:30
Comment on lines 365 to 379
let mut prof =
crate::host::profiler::Profiler::new("multi_test.elf", &elf_contents).unwrap();
{
let opts = ProverOpts::default()
.with_skip_seal(true)
.with_trace_callback(prof.make_trace_callback());
let mut prover = Prover::new_with_opts(&elf_contents, MULTI_TEST_ID, opts).unwrap();
prover.add_input_u32_slice(&[
4, // Generate known profiling trace
0,
]);
prover.run().unwrap();
}

prof.finalize();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we make the profiler use an RAII pattern?

@shkoo shkoo merged commit 9c811c3 into main Sep 13, 2022
@shkoo shkoo deleted the nils/profiling2 branch September 13, 2022 04:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants