This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update pow submodule to v0.1.0
Move pow submoodule to specific tag v0.1.0 so we don't need to worry dependency if dcurl is updated.
- Loading branch information
Yu Wei Wu
committed
Mar 4, 2019
1 parent
f46e63f
commit 99412e9
Showing
2 changed files
with
1 addition
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[submodule "third_party/dcurl"] | ||
path = third_party/dcurl | ||
url = https://github.com/DLTcollab/dcurl.git | ||
branch = dev | ||
[submodule "third_party/hiredis"] | ||
path = third_party/hiredis | ||
url = https://github.com/redis/hiredis.git |
Submodule dcurl
updated
38 files
+11 −0 | .clang-format | |
+1 −0 | .gitignore | |
+3 −0 | .gitmodules | |
+32 −0 | Doxyfile | |
+35 −13 | Makefile | |
+47 −149 | README.md | |
+1 −0 | deps/libtuv | |
+0 −24 | docs/FPGA-ACCEL.md | |
+ − | docs/benchmark.png | |
+133 −0 | docs/build-n-test.md | |
+25 −0 | docs/fpga-accelerator.md | |
+1 −1 | jni/iri-pearldiver-exlib.c | |
+6 −3 | mk/defs.mk | |
+23 −0 | mk/submodule.mk | |
+16 −13 | src/clcontext.c | |
+2 −2 | src/common.c | |
+5 −1 | src/common.h | |
+2 −2 | src/compat-ccurl.c | |
+1 −1 | src/cpu-utils.h | |
+2 −52 | src/curl.c | |
+13 −11 | src/dcurl.c | |
+44 −1 | src/dcurl.h | |
+2 −0 | src/implcontext.c | |
+10 −4 | src/implcontext.h | |
+132 −100 | src/pow_avx.c | |
+7 −6 | src/pow_avx.h | |
+95 −61 | src/pow_c.c | |
+7 −6 | src/pow_c.h | |
+69 −47 | src/pow_cl.c | |
+3 −5 | src/pow_cl.h | |
+4 −6 | src/pow_kernel.cl | |
+89 −50 | src/pow_sse.c | |
+9 −8 | src/pow_sse.h | |
+1 −1 | src/trinary.c | |
+2 −2 | src/trinary.h | |
+4 −3 | tests/common.h | |
+22 −18 | tests/test-dcurl.c | |
+23 −13 | tests/test-pow.c |