Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
luffykai committed Jan 13, 2025
1 parent 089a06b commit 1666f6f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ lto = "thin"

[workspace.dependencies]
# Stark Backend
openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", branch = "lunkai/test-metrics", default-features = false }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", branch = "lunkai/test-metrics", default-features = false }
openvm-stark-backend = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda", default-features = false }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", rev = "47a0bda", default-features = false }

# OpenVM
openvm-sdk = { path = "crates/sdk", default-features = false }
Expand Down
2 changes: 0 additions & 2 deletions crates/prof/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ fn main() -> Result<()> {
for (metrics_path, prev_metrics_path) in args.json_paths.into_iter().zip_eq(prev_json_paths) {
let db = MetricDb::new(&metrics_path)?;
let grouped = GroupedMetrics::new(&db, "group")?;
// ^ is empty?
let mut aggregated = grouped.aggregate();
let mut prev_aggregated = None;
if let Some(prev_path) = prev_metrics_path {
Expand All @@ -83,7 +82,6 @@ fn main() -> Result<()> {
md_paths.push(md_path);
aggregated_metrics.push((aggregated, prev_aggregated));
}
println!("aggregated_metrics: {:?}", aggregated_metrics);
if let Some(command) = args.command {
match command {
Commands::Summary(cmd) => {
Expand Down
2 changes: 0 additions & 2 deletions crates/prof/src/summary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ impl GithubSummary {
.zip_eq(md_paths.iter())
.map(|((aggregated, prev_aggregated), md_path)| {
let md_filename = md_path.file_name().unwrap().to_str().unwrap();
println!("aggregated: {:?}", aggregated.by_group.keys());
println!("md_filename: {:?}", md_filename);
let mut row = aggregated.get_summary_row(md_filename).unwrap();
if let Some(prev_aggregated) = prev_aggregated {
// md_filename doesn't matter
Expand Down

0 comments on commit 1666f6f

Please sign in to comment.