-
Notifications
You must be signed in to change notification settings - Fork 276
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
perf: Make PublicKey
decoding lazy inside WASM
#5048
Merged
dima74
merged 2 commits into
hyperledger-iroha:main
from
dima74:diralik/wasm-lazy-decoding-PublicKey
Sep 13, 2024
Merged
perf: Make PublicKey
decoding lazy inside WASM
#5048
dima74
merged 2 commits into
hyperledger-iroha:main
from
dima74:diralik/wasm-lazy-decoding-PublicKey
Sep 13, 2024
Conversation
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
dima74
requested review from
s8sato,
mversic,
SamHSmith,
outoftardis,
Erigara,
0x009922 and
DCNick3
as code owners
September 9, 2024 14:46
dima74
force-pushed
the
diralik/wasm-lazy-decoding-PublicKey
branch
from
September 9, 2024 14:48
a2e9088
to
66b7494
Compare
DCNick3
reviewed
Sep 9, 2024
dima74
force-pushed
the
diralik/wasm-lazy-decoding-PublicKey
branch
from
September 10, 2024 15:04
66b7494
to
2c799e1
Compare
DCNick3
previously approved these changes
Sep 10, 2024
nxsaken
reviewed
Sep 11, 2024
dima74
force-pushed
the
diralik/wasm-lazy-decoding-PublicKey
branch
from
September 11, 2024 10:59
2c799e1
to
b81435c
Compare
Erigara
previously approved these changes
Sep 12, 2024
DCNick3
previously approved these changes
Sep 12, 2024
dima74
force-pushed
the
diralik/wasm-lazy-decoding-PublicKey
branch
2 times, most recently
from
September 12, 2024 13:12
7e06caa
to
b9b4757
Compare
Signed-off-by: Dmitry Murzin <[email protected]>
nxsaken
force-pushed
the
diralik/wasm-lazy-decoding-PublicKey
branch
from
September 12, 2024 13:53
b9b4757
to
ad6fb9d
Compare
Signed-off-by: Dmitry Murzin <[email protected]>
Looks like this PR would fail I2::Dev::Wasm workflow. Please review latest commit with the fix |
DCNick3
approved these changes
Sep 12, 2024
Erigara
approved these changes
Sep 13, 2024
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Context
Fixes #5038
Solution
Make
PublicKey
decoding lazy inside WASM, sincePublicKey
in WASM is used mostly for comparison operations (==
), and comparison can be performed without decoding (see #5038 for details). This givess approximatelly 400tps increase for single peer (from ~2450 to ~2850).Review notes (optional)
Checklist
CONTRIBUTING.md
.