forked from 0xPolygonHermez/zkevm-prover
-
Notifications
You must be signed in to change notification settings - Fork 4
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 goldilocks
updated
24 files
+6 −6 | .vscode/c_cpp_properties.json | |
+1 −1 | CudaArch.mk | |
+32 −4 | Makefile | |
+4 −0 | README.md | |
+34 −1 | benchs/bench.cpp | |
+2 −0 | src/gl64_t.cuh | |
+290 −0 | src/goldilocks_cubic_extension.cuh | |
+4 −0 | src/goldilocks_cubic_extension.hpp | |
+44 −2 | src/ntt_goldilocks.cpp | |
+2,704 −0 | src/ntt_goldilocks.cu | |
+356 −0 | src/ntt_goldilocks.cuh | |
+60 −3 | src/ntt_goldilocks.hpp | |
+394 −82 | src/poseidon_goldilocks.cu | |
+6 −1 | src/poseidon_goldilocks.hpp | |
+43 −0 | tests/goldilocks_cubic_extension.cu | |
+6 −0 | tests/test_goldilocks_cubic_extension.hpp | |
+141 −0 | tests/test_merkle.cpp | |
+596 −0 | tests/test_ntt.cpp | |
+158 −1 | tests/tests.cpp | |
+42 −0 | utils/cuda_utils.cu | |
+19 −3 | utils/cuda_utils.cuh | |
+12 −0 | utils/cuda_utils.hpp | |
+36 −0 | utils/timer.cpp | |
+25 −0 | utils/timer.hpp |