Skip to content
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

[5.0] Adapt to changes in bls12-381 lib and add tests #1882

Merged
merged 30 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
71a9319
Make code compile with refactored bls12-381.
yarkinwho Nov 9, 2023
eea0ea3
Refactor some interfaces, compiling, not tested yet.
yarkinwho Nov 9, 2023
3d188c7
Merge branch 'release/5.0' into yarkin/update_bls
yarkinwho Nov 9, 2023
fa59891
Refactor bls_gx calls.
yarkinwho Nov 10, 2023
d8dc360
Add bls_fp_mod and bls_fp_exp
yarkinwho Nov 10, 2023
35f375c
Update unit tests.
yarkinwho Nov 13, 2023
77f2be4
Merge branch 'release/5.0' into yarkin/update_bls
yarkinwho Nov 13, 2023
9c42d42
Fix comile.
yarkinwho Nov 13, 2023
49d17e3
Update to use affine form instead of jacobian form for data
yarkinwho Nov 14, 2023
fa5f81e
Merge branch 'release/5.0' into yarkin/update_bls
yarkinwho Nov 14, 2023
4e40590
Fix benchmark
yarkinwho Nov 14, 2023
2a85796
add benchmarking for Montgomery form host functions
linh2931 Nov 15, 2023
9d35e5a
Add tests for fp_mod, fp_exp, fp_mul
yarkinwho Nov 15, 2023
4255d62
Add more test case and update submodule (only contains test updates).
yarkinwho Nov 15, 2023
8819030
fix weighted sum montgomery form flag
linh2931 Nov 15, 2023
f280d5e
add const& to std::string parameters in all _impl methods
linh2931 Nov 15, 2023
dfb05c5
Remove _mont functions.
yarkinwho Nov 16, 2023
e1f67e9
Update comments.
yarkinwho Nov 16, 2023
d9e59b8
Delete unused benchmark.
yarkinwho Nov 16, 2023
36eafc7
Merge remote-tracking branch 'origin/yarkin/update_bls' into more_bls…
linh2931 Nov 16, 2023
65b54ab
resolve merge conflicts
linh2931 Nov 16, 2023
c39e930
remove _mont* functions
linh2931 Nov 16, 2023
6a9a8b1
use std::array instead of std::vector to simply conversion to eosio::…
linh2931 Nov 16, 2023
cc9bba8
Merge pull request #1904 from AntelopeIO/more_bls_benchmark
linh2931 Nov 17, 2023
cb4ceaa
Update feature signature.
yarkinwho Nov 21, 2023
1269951
Update feature manager, fix deep-mind.log accordinglly.
yarkinwho Nov 29, 2023
11640bf
Update to latest bls lib.
yarkinwho Nov 29, 2023
3c5c566
Merge branch 'release/5.0' into yarkin/update_bls
yarkinwho Nov 29, 2023
87738aa
remove `(multi-exponentiation)` from comments.
greg7mdp Nov 29, 2023
804e415
Update bls12 submodule to tip of `main` branch.
greg7mdp Nov 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark/benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ std::map<std::string, std::function<void()>> features {
};

// values to control cout format
constexpr auto name_width = 28;
constexpr auto name_width = 40;
constexpr auto runs_width = 5;
constexpr auto time_width = 12;
constexpr auto ns_width = 2;
Expand Down
Loading