-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support CUDA C32 mining * add nearly 2x faster cuda mean cuckaroom solver * update cuckoo * update cuckoo again * add old plugin * update to latest cuckoo using only 2 arg version of static_assert * add cuckarooz * v4 featuring CUDA Cuckarooz * Fix version and cargo update * fix config line Co-authored-by: Quentin Le Sceller <[email protected]>
1 parent
038c77d
commit e78aec6
Showing
11 changed files
with
403 additions
and
362 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner" | ||
version = "3.0.0-beta.1" | ||
version = "4.0.0" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Mining software for Grin, supports CPU and CUDA GPUs." | ||
build = "src/build/build.rs" | ||
|
@@ -32,12 +32,12 @@ slog = { version = "2", features = ["max_level_trace", "release_max_level_trace" | |
term = "0.6" | ||
time = "0.1" | ||
|
||
grin_miner_util = { path = "./util", version = "3.0.0-beta.1" } | ||
grin_miner_plugin = { path = "./plugin", version = "3.0.0-beta.1" } | ||
grin_miner_config = { path = "./config", version = "3.0.0-beta.1" } | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "3.0.0-beta.1" } | ||
grin_miner_util = { path = "./util", version = "4.0.0" } | ||
grin_miner_plugin = { path = "./plugin", version = "4.0.0" } | ||
grin_miner_config = { path = "./config", version = "4.0.0" } | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "4.0.0" } | ||
#use this alternative inclusion below to build cuda plugins | ||
#cuckoo_miner = { path = "./cuckoo-miner", version = "3.0.0-beta.1", features = ["build-cuda-plugins"]} | ||
cuckoo_miner = { path = "./cuckoo-miner", version = "4.0.0", features = ["build-cuda-plugins"]} | ||
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "1.0.2", optional = true} | ||
ocl_cuckaroo = { path = "./ocl_cuckaroo", version = "1.0.2", optional = true} | ||
|
||
|
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,16 +1,16 @@ | ||
[package] | ||
name = "grin_miner_config" | ||
version = "3.0.0-beta.1" | ||
version = "4.0.0" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration handling for the grin miner" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
workspace = ".." | ||
|
||
[dependencies] | ||
cuckoo_miner = { path = "../cuckoo-miner", version = "3.0.0-beta.1" } | ||
cuckoo_miner = { path = "../cuckoo-miner", version = "4.0.0" } | ||
dirs = "2" | ||
grin_miner_util = { path = "../util", version = "3.0.0-beta.1" } | ||
grin_miner_util = { path = "../util", version = "4.0.0" } | ||
serde = "1" | ||
serde_derive = "1" | ||
slog = { version = "2", features = ["max_level_trace", "release_max_level_trace"] } | ||
|
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
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
Submodule cuckoo
updated
13 files
+1 −2 | README.md | |
+12 −0 | src/cuckaroom/Makefile | |
+62 −0 | src/cuckarooz/Makefile | |
+67 −0 | src/cuckarooz/bitmap.hpp | |
+75 −0 | src/cuckarooz/compress.hpp | |
+59 −0 | src/cuckarooz/cuckarooz.c | |
+211 −0 | src/cuckarooz/cuckarooz.hpp | |
+136 −0 | src/cuckarooz/graph.hpp | |
+577 −0 | src/cuckarooz/kernel.cuh | |
+175 −0 | src/cuckarooz/mean.cpp | |
+1,540 −0 | src/cuckarooz/mean.cu | |
+935 −0 | src/cuckarooz/mean.hpp | |
+124 −0 | src/cuckarooz/simple.cpp |
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
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
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
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner_plugin" | ||
version = "3.0.0-beta.1" | ||
version = "4.0.0" | ||
authors = ["Grin Developers <[email protected]>"] | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
description = "Device specific plugins for the grin miner" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "grin_miner_util" | ||
version = "3.0.0-beta.1" | ||
version = "4.0.0" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Utilities for the grin miner" | ||
repository = "https://github.com/mimblewimble/grin-miner" | ||
|