-
Notifications
You must be signed in to change notification settings - Fork 66
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
remove panics in StemFromBytes and FromLEBytes #366
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,17 @@ type BatchNewLeafNodeData struct { | |
|
||
// BatchNewLeafNode creates a new leaf node from the given data. It optimizes LeafNode creation | ||
// by batching expensive cryptography operations. It returns the LeafNodes sorted by stem. | ||
func BatchNewLeafNode(nodesValues []BatchNewLeafNodeData) []LeafNode { | ||
func BatchNewLeafNode(nodesValues []BatchNewLeafNodeData) ([]LeafNode, error) { | ||
cfg := GetConfig() | ||
ret := make([]LeafNode, len(nodesValues)) | ||
|
||
numBatches := runtime.NumCPU() | ||
batchSize := len(nodesValues) / numBatches | ||
|
||
var wg sync.WaitGroup | ||
var ( | ||
wg sync.WaitGroup | ||
err error | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This I've created a fix for this using Edit: I see that test failed for this reason. |
||
) | ||
wg.Add(numBatches) | ||
for i := 0; i < numBatches; i++ { | ||
start := i * batchSize | ||
|
@@ -42,7 +45,12 @@ func BatchNewLeafNode(nodesValues []BatchNewLeafNodeData) []LeafNode { | |
valsslice[idx] = nv.Values[idx] | ||
} | ||
|
||
ret[i] = *NewLeafNode(nv.Stem, valsslice) | ||
var leaf *LeafNode | ||
leaf, err = NewLeafNode(nv.Stem, valsslice) | ||
if err != nil { | ||
return | ||
} | ||
ret[i] = *leaf | ||
|
||
c1c2points[2*i], c1c2points[2*i+1] = ret[i].c1, ret[i].c2 | ||
c1c2frs[2*i], c1c2frs[2*i+1] = new(Fr), new(Fr) | ||
|
@@ -53,7 +61,9 @@ func BatchNewLeafNode(nodesValues []BatchNewLeafNodeData) []LeafNode { | |
var poly [NodeWidth]Fr | ||
poly[0].SetUint64(1) | ||
for i, nv := range nodesValues { | ||
StemFromBytes(&poly[1], nv.Stem) | ||
if err = StemFromBytes(&poly[1], nv.Stem); err != nil { | ||
return | ||
} | ||
poly[2] = *c1c2frs[2*i] | ||
poly[3] = *c1c2frs[2*i+1] | ||
|
||
|
@@ -68,7 +78,7 @@ func BatchNewLeafNode(nodesValues []BatchNewLeafNodeData) []LeafNode { | |
return bytes.Compare(ret[i].stem, ret[j].stem) < 0 | ||
}) | ||
|
||
return ret | ||
return ret, nil | ||
} | ||
|
||
// firstDiffByteIdx will return the first index in which the two stems differ. | ||
|
@@ -127,7 +137,9 @@ func (n *InternalNode) InsertMigratedLeaves(leaves []LeafNode, resolver NodeReso | |
} | ||
} | ||
|
||
node.updateMultipleLeaves(nonPresentValues) | ||
if err := node.updateMultipleLeaves(nonPresentValues); err != nil { | ||
return nil | ||
gballet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
continue | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Asking just in case: deferring
GetConfig()
to return an error?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.
nah, because if you get an error at this stage, there's no point in continuing (and also it would make a huge diff as it's called everywhere)