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

feat(prover): Add error to panic message of prover #2807

Merged
merged 1 commit into from
Sep 5, 2024
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
7 changes: 5 additions & 2 deletions prover/crates/bin/prover_fri/src/gpu_prover_job_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,11 @@ pub mod gpu_prover {
(),
&worker,
)
.unwrap_or_else(|_| {
panic!("failed generating GPU proof for id: {}", prover_job.job_id)
.unwrap_or_else(|err| {
panic!(
"failed generating GPU proof for id: {}, error: {:?}",
prover_job.job_id, err
)
});
tracing::info!(
"Successfully generated gpu proof for job {} took: {:?}",
Expand Down
Loading