-
Notifications
You must be signed in to change notification settings - Fork 315
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: swap out default backend from pairing to blst #1482
Conversation
Resolves #1438 |
Requires |
e4b4d66
to
9fd8f38
Compare
This PR will need a new review as it's getting ready since a number of deps are changing, including |
let mut tree_builder = TreeBuilder::<Tree::Arity>::new( | ||
#[cfg(feature = "gpu")] | ||
Some(BatcherType::OpenCL), | ||
batcher, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The config flag in the line above is not needed as the whole function is only enabled when the gpu
feature is enabled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, I noticed it was there, so preserved it for now (i.e. left alone). Can remove before merging.
feat: update neptune to a branch with updated bellman
fix: rename arg var and remove unneeded cfg
f81494e
to
b523a87
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
Requires filecoin-project/bellperson#203