-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule mcl
updated
25 files
+4 −1 | .github/workflows/main.yml | |
+1 −1 | Makefile | |
+1 −1 | include/mcl/bn.hpp | |
+86 −50 | include/mcl/ec.hpp | |
+1 −9 | include/mcl/fp.hpp | |
+64 −91 | include/mcl/gmp_util.hpp | |
+1 −1 | include/mcl/op.hpp | |
+98 −0 | misc/gather_test.cpp | |
+72 −26 | misc/internal.md | |
+64 −20 | misc/mulvec_test.cpp | |
+13 −8 | readme.md | |
+12 −0 | sample/mt_test.cpp | |
+538 −132 | src/asm/bint-x64-amd64.S | |
+563 −132 | src/asm/bint-x64-mingw.S | |
+561 −132 | src/asm/bint-x64-win.asm | |
+8 −0 | src/avx512.hpp | |
+3 −56 | src/bint_impl.hpp | |
+4 −0 | src/fp.cpp | |
+167 −60 | src/gen_bint_x64.py | |
+181 −2 | src/low_func.hpp | |
+431 −146 | src/msm_avx.cpp | |
+16 −0 | test/bench.hpp | |
+32 −0 | test/bls12_test.cpp | |
+30 −12 | test/ec_test.cpp | |
+6 −1 | test/sq_test.cpp |