Skip to content

Commit

Permalink
update mcl
Browse files Browse the repository at this point in the history
  • Loading branch information
herumi committed Sep 11, 2024
1 parent 27cf19c commit d1770a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcl
Submodule mcl updated 50 files
+4 −1 .github/workflows/main.yml
+14 −3 CMakeLists.txt
+27 −10 Makefile
+13 −1 api.md
+7 −3 common.mk
+3 −7 common.props
+0 −14 debug.props
+5 −9 include/cybozu/inttype.hpp
+129 −1 include/mcl/bint.hpp
+8 −0 include/mcl/bn.h
+16 −19 include/mcl/bn.hpp
+7 −1 include/mcl/config.hpp
+67 −37 include/mcl/ec.hpp
+5 −28 include/mcl/fp.hpp
+33 −81 include/mcl/gmp_util.hpp
+43 −0 include/mcl/impl/bn_c_impl.hpp
+7 −6 include/mcl/op.hpp
+103 −33 include/mcl/operator.hpp
+18 −8 include/mcl/util.hpp
+3 −4 include/mcl/vint.hpp
+12 −36 mcl.sln
+31 −8 misc/internal.md
+138 −0 misc/mul-approx.py
+9 −7 misc/mulvec_test.cpp
+9 −3 readme.md
+0 −12 release.props
+1,384 −118 src/asm/bint-x64-amd64.S
+6,185 −0 src/asm/bint-x64-mingw.S
+1,394 −0 src/asm/bint-x64-win.asm
+464 −0 src/avx512.hpp
+3 −1 src/fp.cpp
+123 −122 src/gen_bint_header.py
+607 −0 src/gen_bint_x64.py
+96 −0 src/gen_msm_para.py
+99 −0 src/montgomery.py
+1,367 −830 src/msm_avx.cpp
+288 −0 src/msm_avx_bls12_381.h
+41 −30 src/proj/mcllib/mcllib.vcxproj
+1,349 −1,275 src/s_xbyak.py
+92 −0 test/bint_test.cpp
+82 −0 test/bn_c_test.hpp
+18 −0 test/common_test.hpp
+30 −0 test/fp_test.cpp
+15 −1 test/low_func_test.cpp
+38 −17 test/mont.hpp
+89 −87 test/proj/bls12_test/bls12_test.vcxproj
+0 −88 test/proj/ec_test/ec_test.vcxproj
+0 −88 test/proj/fp_test/fp_test.vcxproj
+0 −88 test/proj/fp_tower_test/fp_tower_test.vcxproj
+42 −0 test/smallmodp_test.cpp

0 comments on commit d1770a3

Please sign in to comment.