Skip to content
Snippets Groups Projects
Commit 9a2ef075 authored by psychocrypt's avatar psychocrypt
Browse files

update docs and reintroduce monero7

- reintroduce monero7 until the POW is final
- update docs (add cryptonigh_v8)
parent ce84244a
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,7 @@ If your prefered coin is not listed, you can choose one of the following algorit ...@@ -60,6 +60,7 @@ If your prefered coin is not listed, you can choose one of the following algorit
- cryptonight_masari - cryptonight_masari
- cryptonight_v7 - cryptonight_v7
- cryptonight_v7_stellite - cryptonight_v7_stellite
- cryptonight_v8
- 4MiB scratchpad memory - 4MiB scratchpad memory
- cryptonight_haven - cryptonight_haven
- cryptonight_heavy - cryptonight_heavy
......
...@@ -9,6 +9,7 @@ R"===( ...@@ -9,6 +9,7 @@ R"===(
* 2 = chunked memory, chunk size is controlled by 'mem_chunk' * 2 = chunked memory, chunk size is controlled by 'mem_chunk'
* required: intensity must be a multiple of worksize * required: intensity must be a multiple of worksize
* 1 or true = use 16byte contiguous memory per thread, the next memory block has offset of intensity blocks * 1 or true = use 16byte contiguous memory per thread, the next memory block has offset of intensity blocks
* (not allowed for cryptonight_v8 ans monero8)
* 0 or false = use a contiguous block of memory per thread * 0 or false = use a contiguous block of memory per thread
* mem_chunk - range 0 to 18: set the number of elements (16byte) per chunk * mem_chunk - range 0 to 18: set the number of elements (16byte) per chunk
* this value is only used if 'strided_index' == 2 * this value is only used if 'strided_index' == 2
......
...@@ -105,6 +105,7 @@ xmrstak::coin_selection coins[] = { ...@@ -105,6 +105,7 @@ xmrstak::coin_selection coins[] = {
{ "haven", {cryptonight_haven, cryptonight_heavy, 3u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr }, { "haven", {cryptonight_haven, cryptonight_heavy, 3u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr },
{ "intense", {cryptonight_monero, cryptonight, 4u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr }, { "intense", {cryptonight_monero, cryptonight, 4u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "masari", {cryptonight_masari, cryptonight_monero, 7u}, {cryptonight_monero, cryptonight_monero, 0u},nullptr }, { "masari", {cryptonight_masari, cryptonight_monero, 7u}, {cryptonight_monero, cryptonight_monero, 0u},nullptr },
{ "monero7", {cryptonight_monero, cryptonight_monero, 0u}, {cryptonight_monero, cryptonight_monero, 0u}, "pool.usxmrpool.com:3333" },
{ "monero8", {cryptonight_monero_v8, cryptonight_monero, 8u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, "pool.usxmrpool.com:3333" }, { "monero8", {cryptonight_monero_v8, cryptonight_monero, 8u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, "pool.usxmrpool.com:3333" },
{ "qrl", {cryptonight_monero, cryptonight_monero, 0u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr }, { "qrl", {cryptonight_monero, cryptonight_monero, 0u}, {cryptonight_monero, cryptonight_monero, 0u}, nullptr },
{ "ryo", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr }, { "ryo", {cryptonight_heavy, cryptonight_heavy, 0u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr },
......
...@@ -27,7 +27,8 @@ POOLCONF], ...@@ -27,7 +27,8 @@ POOLCONF],
* haven (automatic switch with block version 3 to cryptonight_haven) * haven (automatic switch with block version 3 to cryptonight_haven)
* intense * intense
* masari * masari
* monero7 (use this for Monero's new PoW) * monero7
* monero8 (use this to support Monero's Oct 2018 fork)
* qrl - Quantum Resistant Ledger * qrl - Quantum Resistant Ledger
* ryo * ryo
* turtlecoin * turtlecoin
...@@ -41,6 +42,7 @@ POOLCONF], ...@@ -41,6 +42,7 @@ POOLCONF],
* # 2MiB scratchpad memory * # 2MiB scratchpad memory
* cryptonight * cryptonight
* cryptonight_v7 * cryptonight_v7
* cryptonight_v8
* # 4MiB scratchpad memory * # 4MiB scratchpad memory
* cyrptonight_bittube2 * cyrptonight_bittube2
* cryptonight_haven * cryptonight_haven
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment