summaryrefslogtreecommitdiffstats
path: root/xmrstak/backend/cpu
Commit message (Collapse)AuthorAgeFilesLines
* Fix FTBFSpowerTimothy Pearson2018-06-041-1/+1
|
* remove definition of `_mm256_set_m128i`psychocrypt2018-06-041-1/+1
| | | | The define of `_mm256_set_m128i` is not needed and avoid intel compiler throws a warning about it.
* fix duplicated nonce usagepsychocrypt2018-06-041-0/+6
| | | | | | - 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 job consume (possible deadlock)psychocrypt2018-06-042-15/+4
| | | | | | | | | 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`
* Spell checkTony Butler2018-06-0412-88/+87
|
* support stellite v4 forkpsychocrypt2018-06-042-24/+66
| | | | | | solve #1494 - add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
* add support for IPBC coinpsychocrypt2018-06-042-21/+69
| | | | | - add algorithm `cryptonight_lite_v7_xor` - update documentation
* Fixes #1467Vladimir Tamara2018-06-041-0/+1
|
* add independent dev pool coin descriptionpsychocrypt2018-06-044-20/+22
| | | | | | | | | | | | | | - 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.
* fix wrong algo selectionpsychocrypt2018-06-041-4/+18
| | | | | 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 a few conversion warningspsychocrypt2018-06-044-8/+8
| | | | - fix conversion from large type tp small
* change 64Bit size value to 32Bitpsychocrypt2018-06-046-24/+26
| | | | avoid conversion warning by reducing the size value type
* refactor scratchpad creationpsychocrypt2018-06-043-4/+17
| | | | Use the maximum scratchpad size from before and after the fork.
* Repair more typos in comments onlyTony Butler2018-06-041-1/+1
|
* Repair all 'namepsace' to 'namespace' (all within comments)Tony Butler2018-06-046-6/+6
|
* change `height` to `version`psychocrypt2018-06-041-2/+2
| | | | -rename `mining_fork_height` to `*_version`
* refactor mining algo selectionpsychocrypt2018-06-042-26/+36
| | | | | - add `fork_height` to currency - refactor algorithm selection
* Add filename to backend errorsfireice-uk2018-06-041-5/+5
|
* POW AEON v7psychocrypt2018-06-042-45/+85
| | | | | - add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes
* fix autoAdjust(non hwloc)psychocrypt2018-06-041-2/+3
| | | | - remove call `IsCurrencyMonero` with `cn_select_memory`
* Fixed compile error without hwloc.Judemir Ribeiro2018-04-071-17/+1
|
* Update cryptonight_altivec.hJudemir Ribeiro2018-04-071-2/+5
|
* Recovered some power8 speed (3200h/s on monero7 with 20 core power8)Judemir Ribeiro2018-04-061-6/+2
|
* Merge branch 'master' of https://github.com/nioroso-x3/xmr-stakJudemir Ribeiro2018-04-061-2/+6
|\
| * Update cryptonight_altivec.hJudemir Ribeiro2018-04-061-2/+6
| | | | | | Fix for gcc 7 behavior
* | Recovered some of power8 speed (3200h/s on 20 core power8 in monero7)Judemir Ribeiro2018-04-061-66/+312
|/
* Ported xmr-stak 2.3.0 rc to ppc64leJudemir Ribeiro2018-04-018-345/+1220
|
* XMR-Stak 2.3.0 RCxmr-stak-devs2018-03-256-198/+556
| | | | | | | 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>
* Comment cleanupBryan Stitt2018-03-031-1/+1
|
* void nonce overlapppingpsychocrypt2018-01-271-3/+4
| | | | | 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.
* Merge pull request #772 from vtamara/comp_adJpsychocrypt2018-01-212-0/+5
|\ | | | | It compiles on OpenBSD/adJ 6.2
| * Extra code path for OpenBSD suggested by psychocryptVladimir Tamara2018-01-161-1/+3
| |
| * It compiles on OpenBSD/adJ 6.2Vladimir Tamara2018-01-012-1/+4
| |
* | fix set affinity for windowspsychocrypt2018-01-131-1/+10
| | | | | | | | Ignore any affinity >=64 and throw a warning.
* | Merge pull request #846 from psychocrypt/fix-cpuMemAutodetectionfireice-uk2018-01-121-18/+15
|\ \ | | | | | | fix autosuggestion CPU
| * | fix usage of bytes instead of KBpsychocrypt2018-01-091-17/+14
| | | | | | | | | | | | | | | | | | | | | bug was introduced with #67 - increase the L3 sanity check to 2GiB - fix usage of byte instead of KB
| * | Fix cache size detectionTom Doemiller2018-01-091-1/+1
| | |
* | | Merge pull request #697 from dangrabbits/masterpsychocrypt2018-01-091-0/+3
|\ \ \ | |/ / |/| | Updated config.tpl comments to include how to exclude CPU/GPUs
| * | Updated config.tpl comments to include how to exclude CPU/GPUsdangrabbits2017-12-251-0/+3
| | |
* | | Merge pull request #778 from b-/patch-2fireice-uk2018-01-081-1/+1
|\ \ \ | | | | | | | | Rename "MacOS" to "macOS"
| * | | Update minethd.cppBrian Recchia2018-01-041-1/+1
| | |/ | |/| | | | | | | | | | | | | Changed capitalization of "macOS" Squashed the commit
* | | Merge pull request #705 from dataway/devfireice-uk2018-01-031-7/+6
|\ \ \ | |/ / |/| | Rearrange prefetch for slight performance increase in CPU miner
| * | CPU - cryptonight_aesni.h - rearranged prefetch instructions to allow more ↵Anthony Uk2017-12-251-7/+6
| |/ | | | | | | time for cache to charge
* | Typo: Obtaning -> ObtainingLehmax2017-12-281-1/+1
| |
* | Busywork courtesy of Microsoftfireice-uk2017-12-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | Add messages Missing include 1
* | On-demand elevationfireice-uk2017-12-251-0/+4
|/
* Make sure we are using a steady clockfireice-uk2017-12-221-4/+2
|
* Fix nonce allocationUnknown2017-12-072-17/+28
|
* Update documentation for `low_power_mode`.Grzegorz Hasse2017-12-061-2/+4
|
* Extend low_power_mode to do up to 5 cn hashes at a time.Grzegorz Hasse2017-12-065-102/+483
| | | | | | 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.
OpenPOWER on IntegriCloud