Skip to content

Commit

Permalink
chore: Modify Neptune package features in Cargo.toml (#1100)
Browse files Browse the repository at this point in the history
- Disabled default features for Neptune package to curb unnecessary functionalities
  • Loading branch information
huitseeker authored Feb 7, 2024
1 parent c3e4f40 commit 5fc5679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ bincode = "1.3.3"
clap = "4.3.17"
ff = "0.13"
metrics = "0.22.0"
neptune = { git = "https://github.com/lurk-lab/neptune", branch = "dev", features = ["abomonation"] }
neptune = { git = "https://github.com/lurk-lab/neptune", branch = "dev", default-features = false, features = ["abomonation"] }
nova = { git = "https://github.com/lurk-lab/arecibo", branch = "dev", package = "arecibo", features = ["abomonate"]}
once_cell = "1.18.0"
pairing = { version = "0.23" }
Expand Down

1 comment on commit 5fc5679

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

Benchmarks

Table of Contents

Overview

This benchmark report shows the Fibonacci GPU benchmark.
NVIDIA L4
Intel(R) Xeon(R) CPU @ 2.20GHz
32 vCPUs
125 GB RAM
Workflow run: https://github.com/lurk-lab/lurk-rs/actions/runs/7818405009

Benchmark Results

LEM Fibonacci Prove - rc = 100

ref=c3e4f40b2242d6106ef1c5193f8bd1b55e0d1903 ref=5fc56791936257d229582512c7474d192ca612aa
num-100 1.49 s (✅ 1.00x) 1.47 s (✅ 1.01x faster)
num-200 2.83 s (✅ 1.00x) 2.82 s (✅ 1.00x faster)

LEM Fibonacci Prove - rc = 600

ref=c3e4f40b2242d6106ef1c5193f8bd1b55e0d1903 ref=5fc56791936257d229582512c7474d192ca612aa
num-100 1.84 s (✅ 1.00x) 1.83 s (✅ 1.01x faster)
num-200 3.05 s (✅ 1.00x) 3.05 s (✅ 1.00x faster)

Made with criterion-table

Please sign in to comment.