Add GPU sigverify for verify path (#20851)

Allows the use of GPU acceleration in verifying the signatures in Entry's after deserialization in the replay stage

Co-authored-by: Stephen Akridge <sakridge@gmail.com>
Co-authored-by: Ryan Leung <ryan.leung@solana.com>
This commit is contained in:
ryleung-solana
2021-11-30 21:16:13 -05:00
committed by GitHub
parent 8d0357794e
commit 8cf36e5cb0
9 changed files with 573 additions and 56 deletions

View File

@@ -22,6 +22,7 @@ solana-metrics = { path = "../metrics", version = "=1.9.0" }
solana-perf = { path = "../perf", version = "=1.9.0" }
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.9.0" }
solana-sdk = { path = "../sdk", version = "=1.9.0" }
bincode = "1.3.3"
[dev-dependencies]
matches = "0.1.9"
@@ -31,5 +32,8 @@ solana-logger = { path = "../logger", version = "=1.9.0" }
crate-type = ["lib"]
name = "solana_entry"
[[bench]]
name = "entry_sigverify"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]