| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
The define of `_mm256_set_m128i` is not needed and avoid intel compiler throws a warning about it.
|
|
|
|
|
|
| |
- avoid that a nonce which not fits to the current job is used (check jobId after start nonce is consumed)
- move jobId check into the if condition to get a new bunch of nonces
- CPU: add jobId validation after the start nonce is consumed
|
|
|
|
|
|
|
|
|
| |
fix #1505
- fix possible deadlock of the executor thread
- fix racecondition during the job consumation
- remove switch_work in all classes `minethd`
- move `consume_work` into `globalStates`
|
| |
|
|
|
|
|
|
| |
solve #1494
- add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
|
|
|
|
|
| |
- add algorithm `cryptonight_lite_v7_xor`
- update documentation
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- allow the dev pool to fork on a different block version than the user descriped coin
All algorithm are centered around the user coin description.
It is allowed to have two two different coin algorithms in the user coin description.
It is only allowed to use algorithms for the dev pool coin description those are used in the user coin description.
There are two ways to define a non forking coin.
- set both user coin algorithm descriptions to the same algorithm and set version to zero
- set the first algorithm in the user coin description to something you like to use in the dev pool
and set the second algorithm to the correct representation of the coin. Set the version to 255.
This will allow that the dev pool can mine on a different coin algorithm than the not forking user coin.
Do not use an algorithm with different scratchpad size for the dev pool.
|
|
|
|
|
| |
In the case where the dev pool mines on a higher version than a monero fork coin the miner is not resetting the algorithm.
This PR select the correct algorithm each time the block version hash changed.
|
|
|
|
| |
- fix conversion from large type tp small
|
|
|
|
| |
avoid conversion warning by reducing the size value type
|
|
|
|
| |
Use the maximum scratchpad size from before and after the fork.
|
| |
|
| |
|
|
|
|
| |
-rename `mining_fork_height` to `*_version`
|
|
|
|
|
| |
- add `fork_height` to currency
- refactor algorithm selection
|
| |
|
|
|
|
|
| |
- add new pow for AEON
- fix missing cryptonight-heavy selection for multi hashes
|
|
|
|
| |
- remove call `IsCurrencyMonero` with `cn_select_memory`
|
| |
|
| |
|
| |
|
|\ |
|
| |
| |
| | |
Fix for gcc 7 behavior
|
|/ |
|
| |
|
|
|
|
|
|
|
| |
Co-authored-by: psychocrypt <psychocryptHPC@gmail.com>
Co-authored-by: fireice-uk <fireice-uk@users.noreply.github.com>
Co-authored-by: Lee Clagett <code@leeclagett.com>
Co-authored-by: curie-kief <curie-kief@users.noreply.github.com>
|
| |
|
|
|
|
|
| |
The cpu miner backend uses the wrong ranges of nonces instead of using `[startNonce,startNonce + nonce_chunk)`
(startNonce,startNonce + nonce_chunk]` is used. This will results in an overlap with nonces used by the gpu back-ends.
|
|\
| |
| | |
It compiles on OpenBSD/adJ 6.2
|
| | |
|
| | |
|
| |
| |
| |
| | |
Ignore any affinity >=64 and throw a warning.
|
|\ \
| | |
| | | |
fix autosuggestion CPU
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
bug was introduced with #67
- increase the L3 sanity check to 2GiB
- fix usage of byte instead of KB
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Updated config.tpl comments to include how to exclude CPU/GPUs
|
| | | |
|
|\ \ \
| | | |
| | | | |
Rename "MacOS" to "macOS"
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
Changed capitalization of "macOS"
Squashed the commit
|
|\ \ \
| |/ /
|/| | |
Rearrange prefetch for slight performance increase in CPU miner
|
| |/
| |
| |
| | |
time for cache to charge
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add messages
Missing include
1
|
|/ |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The "low_power_mode" option in config.txt can be set to numeral values
between 1 and 5. A value of 5 seems optimal on certain processors
with large L4 cache.
|