| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
| |
|
|\
| |
| | |
POW AEON v7
|
| |
| |
| |
| |
| | |
- add new pow for AEON
- fix missing cryptonight-heavy selection for multi hashes
|
|/
|
|
| |
- remove call `IsCurrencyMonero` with `cn_select_memory`
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
- removed all space indention in `*.hpp` and `*.cpp` files
|
|\
| |
| | |
Network extensions
|
| | |
|
|/
|
|
|
|
| |
* CONF_NO_TLS fix
* gpu error fix + always return to sched after pin
|
|
|
|
|
| |
- add type of the backend to each backend-plugin
- add `gteName` to `iBackend` to get the name of the backend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Multi-pool first draft
* Fix wspace from new IDE
* Better TLS error message
* Fix TLS bug
* Don't put dev pool on stats + pool change-back
* bug fixes
* Error message work
* fix win build
* add per-pool nicehash setting
* Fix bugs
* rm debug msg
* Multipool guided setup
* Support TLS and Nicehash in config
* prelim jconf changes
* final multipool changes
* increase default retry_time to 30, fix mac erro
* rm debug dev pool settings
* Fix another source of connect runaway
|
|
|
|
|
| |
- fix windows linker error during compile
- fix wrong parameter to call aeon (nvidia-backend)
|
|
|
|
|
|
| |
- rename all `xmr` to `monero`
- be insensitive while check for set currency
- add function to compate two strings insensitive
|
|
|
|
|
| |
- update auto suggestion default and hwloc
- extent hash function table to support aeon and xmr within one miner
|
|
|
|
| |
- check if affinity vale before calling `thd_setaffinity`
|
|
|
|
|
|
|
|
| |
This is a follow up of #43 and use the some mechanism to set the thread affinity for
non cpu backends correct.
- use cpu affinity workflow for nvidia and amd
- cpu: move messages of thread spawning before thread creation
|
|
|
|
| |
- remove double copied memory
|