summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1610 from fireice-uk/dev2.4.4fireice-uk2018-05-30103-1079/+1436
|\ | | | | release 2.4.4
| * Merge pull request #1608 from psychocrypt/topic-versionIncease2_4_4fireice-uk2018-05-301-1/+1
| |\ | | | | | | increase version to 2.4.4
| | * increase version to 2.4.4psychocrypt2018-05-301-1/+1
| | | | | | | | | | | | version prepere for the next release
| * | Merge pull request #1609 from psychocrypt/fix-amdAppSdkLinksfireice-uk2018-05-302-2/+4
| |\ \ | | | | | | | | fix broken AMD APP SDK download links
| | * | fix broken AMD APP SDK download linkspsychocrypt2018-05-302-2/+4
| | |/ | | | | | | | | | AMD has removed the AMD APP SDK links from the website. The AMD employes in the AMD formum posted links to there Dropbox where the SDK can be downloaded)
| * | Merge pull request #1607 from psychocrypt/toipic-removeNotNeededDefinefireice-uk2018-05-301-1/+1
| |\ \ | | | | | | | | remove definition of `_mm256_set_m128i`
| | * | remove definition of `_mm256_set_m128i`psychocrypt2018-05-301-1/+1
| | |/ | | | | | | | | | The define of `_mm256_set_m128i` is not needed and avoid intel compiler throws a warning about it.
| * | Merge pull request #1592 from psychocrypt/fix-dupNonces2fireice-uk2018-05-304-12/+20
| |\ \ | | |/ | |/| fix duplicated nonce usage
| | * fix duplicated nonce usagepsychocrypt2018-05-224-12/+20
| | | | | | | | | | | | | | | | | | - 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
| * | Merge pull request #1569 from psychocrypt/fix-cuda9VoltaShufflefireice-uk2018-05-221-1/+1
| |\ \ | | |/ | |/| fix possible deadlock with Volta
| | * fix possible deadlock with Voltapsychocrypt2018-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | If CUDA 9.X is used and the miner is compiled for `sm_70` and used with Volta GPUs than the miner deadlocks if `threads` is not a multiple of `32`. - use `__activemask()` to get all active lanes
| * | Merge pull request #1580 from Spudz76/dev-cuda92psychocrypt2018-05-212-3/+3
| |\ \ | | | | | | | | Update for CUDA 9.2 Toolkit
| | * | Update for CUDA 9.2 ToolkitTony Butler2018-05-192-3/+3
| |/ /
| * | Merge pull request #1473 from Spudz76/dev-benchvarspsychocrypt2018-05-172-8/+50
| |\ \ | | | | | | | | Add options to set wait/work time for benchmark
| | * | Add options to set wait/work time for benchmark; Fixup as reqTony Butler2018-05-172-8/+50
| |/ /
| * | Merge pull request #1568 from psychocrypt/fix-avoidOutOfOrderJobProcessingfireice-uk2018-05-172-10/+33
| |\ \ | | | | | | | | avoid out of order job processing
| | * | avoid out of order job processingpsychocrypt2018-05-172-10/+33
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The login result of a pool contains the first job for the miner. In the case where the pool is sending very fast after the pool login result a new job it is possible that the newer job is processed faster than the job within the login result. The result will be that the miner is mining an older job instead the newest (last received). - enumerate all received messages - trace the message id of the last procssed job - skip all jobs where the message id is older than the last procesed id
| * | Merge pull request #1526 from psychocrypt/fix-jobConsumefireice-uk2018-05-1612-85/+166
| |\ \ | | |/ | |/| fix job consume
| | * github annotationspsychocrypt2018-05-123-53/+63
| | | | | | | | | | | | | | | | | | - reformat `read_write_lock.h` - fix spelling issue - move job id increase of the write to the buttom
| | * use read write locks to secure job updatespsychocrypt2018-05-122-61/+6
| | | | | | | | | | | | user read write locks to be sure that no job is consumend during the job update
| | * add license header to `read_write_lock.h`psychocrypt2018-05-121-0/+23
| | |
| | * add read write lock classpsychocrypt2018-05-125-46/+156
| | | | | | | | | | | | | | | | | | | | | | | | add log class from Will Zhang: Package: cpputil Source: https://github.com/willzhang4a58/cpputil License: MIT License
| | * fix job consume (possible deadlock)psychocrypt2018-05-129-85/+78
| |/ | | | | | | | | | | | | | | | | 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`
| * Merge pull request #1553 from psychocrypt/fix-doubleJobfireice-uk2018-05-091-16/+30
| |\ | | | | | | ignore duplicated equal job from pools
| | * ignore duplicated equal job from poolspsychocrypt2018-05-091-16/+30
| | | | | | | | | | | | | | | | | | | | | Some pools or proxys are sending multiple times in row the same job to the miner. This PR will extent the miner to trigger an socket error if job with the same `jobID` than the current active job is received. Move motd evaluation before the possibil part where a job is ignored.
| * | Merge pull request #1554 from psychocrypt/fix-possibleRaceConditionJpSockfireice-uk2018-05-081-2/+4
| |\ \ | | | | | | | | fix possible race condition in jpsock
| | * | fix possible race condition in jpsockpsychocrypt2018-05-071-2/+4
| | | | | | | | | | | | | | | | Trigger event with a new job after the current pool job is updated.
| * | | Merge pull request #1555 from jagerman/stellite-condition-fixpsychocrypt2018-05-081-1/+1
| |\ \ \ | | |_|/ | |/| | Fix condition on stellite check
| | * | Fix condition on stellite checkJason Rhinelander2018-05-081-1/+1
| |/ /
| * | Merge pull request #1537 from psychocrypt/fix-minerWorkInitialPoolIdfireice-uk2018-05-053-14/+26
| |\ \ | | |/ | |/| set correct `iPoolId` for miner_work
| | * set correct `iPoolId` for miner_workpsychocrypt2018-05-043-14/+26
| | | | | | | | | | | | | | | - initialize miner_work iPoolId in the default constructor with the invalid pool id - move definition of `pool_data` into an own file
| * | Merge pull request #1515 from TOGM/devfireice-uk2018-05-043-0/+3
| |\ \ | | |/ | |/| Add masari coin
| | * add masarignock2018-05-043-0/+3
| |/
| * Merge pull request #1535 from fireice-uk/topic-Spudz76-spellcheckfireice-uk2018-05-0490-880/+876
| |\ | | | | | | Spell check
| | * Spell checkTony Butler2018-05-0390-880/+876
| |/
| * Merge pull request #1512 from psychocrypt/topic-stelliteForkfireice-uk2018-05-0310-42/+122
| |\ | | | | | | support stellite v4 fork
| | * support stellite v4 forkpsychocrypt2018-05-0110-42/+122
| |/ | | | | | | | | | | solve #1494 - add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
| * Merge pull request #1486 from psychocrypt/fix-disableCachefireice-uk2018-04-241-6/+6
| |\ | | | | | | fix that cli option `--noAMDCache`
| | * fix that cli option `--noAMDCache`psychocrypt2018-04-221-6/+6
| | | | | | | | | | | | - fix that to much OpenCL calls whre used if cache is disabled
| * | Merge pull request #1501 from imperdin/patch-2fireice-uk2018-04-241-1/+1
| |\ \ | | | | | | | | Small typo correction
| | * | Small typo correctionimperdin2018-04-241-1/+1
| | |/
| * | Merge pull request #1490 from psychocrypt/topic-renamePrintedAlgorithmsfireice-uk2018-04-241-5/+5
| |\ \ | | | | | | | | rename printed algorithms
| | * | rename printed algorithmspsychocrypt2018-04-221-5/+5
| | | | | | | | | | | | | | | | changes printed algorithm names to algorithms exposed to the used instead of internal used names
| * | | Merge pull request #1489 from psychocrypt/topic-ipbcCoin2fireice-uk2018-04-2411-34/+124
| |\ \ \ | | |/ / | | | / | | |/ | |/| add support for IPBC coin
| | * add support for IPBC coinpsychocrypt2018-04-2211-34/+124
| |/ | | | | | | | | - add algorithm `cryptonight_lite_v7_xor` - update documentation
| * Merge pull request #1469 from ZedPea/devpsychocrypt2018-04-223-1/+4
| |\ | | | | | | Add turtlecoin as a config option
| | * Add turtlecoin as a config optionZedPea2018-04-193-1/+4
| | |
| * | Merge pull request #1468 from vtamara/fix-run-adJpsychocrypt2018-04-191-0/+1
| |\ \ | | |/ | |/| Fixes #1467
| | * Fixes #1467Vladimir Tamara2018-04-191-0/+1
| |/
* | Merge pull request #1459 from fireice-uk/dev2.4.3fireice-uk2018-04-1854-613/+667
|\ \ | |/ | | release 2.4.3
OpenPOWER on IntegriCloud