-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release 2.4.4 #1610
Merged
Merged
release 2.4.4 #1610
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add turtlecoin as a config option
- fix that to much OpenCL calls whre used if cache is disabled
- add algorithm `cryptonight_lite_v7_xor` - update documentation
changes printed algorithm names to algorithms exposed to the used instead of internal used names
add support for IPBC coin
rename printed algorithms
Small typo correction
fix that cli option `--noAMDCache`
solve #1494 - add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
support stellite v4 fork
- initialize miner_work iPoolId in the default constructor with the invalid pool id - move definition of `pool_data` into an own file
Add masari coin
set correct `iPoolId` for miner_work
Trigger event with a new job after the current pool job is updated.
Fix condition on stellite check
…Sock fix possible race condition in jpsock
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.
ignore duplicated equal job from pools
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`
add log class from Will Zhang: Package: cpputil Source: https://github.com/willzhang4a58/cpputil License: MIT License
user read write locks to be sure that no job is consumend during the job update
- reformat `read_write_lock.h` - fix spelling issue - move job id increase of the write to the buttom
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
fix job consume
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
…ssing avoid out of order job processing
Add options to set wait/work time for benchmark
Update for CUDA 9.2 Toolkit
fix possible deadlock with Volta
- 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
The define of `_mm256_set_m128i` is not needed and avoid intel compiler throws a warning about it.
version prepere for the next release
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)
fix duplicated nonce usage
remove definition of `_mm256_set_m128i`
fix broken AMD APP SDK download links
increase version to 2.4.4
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
release 2.4.4
This release fixes some critical bugs in the job consumption part of the miner. It could be that the miner skipped a job if the pool is sending very fast new jobs.
Config files from 2.4.3 are compatible to this release.
Changelog:
iPoolId
for miner_work #1537 ignore duplicated equal job from pools #1553 fix possible race condition in jpsock #1554 avoid out of order job processing #1568 fix duplicated nonce usage #1592--noAMDCache
#1486--noAMDCache
fix that cli option--noAMDCache
#1486