- Sep 13, 2018
-
-
psychocrypt authored
xmr-stak has several implementations for multi hash per thread. The results into 3 intepedent implementations. Each time the algorithm must be changed the possibility to introduce errors is very large. - unify the different cryptonight CPU implementations - simplify the function selection array to find the specilized cryptonight implementation - add a intermediat pointer to access the large state (similar to the old multi hash implementation) As side effect this change increases the speed of the single and multi hash algorithm.
-
- Jul 11, 2018
-
-
psychocrypt authored
fix #1708 The extension of the job result contains the wrong algorithm used to create the nonce. The fix provide now the correct used algorithm even if the coin is forking to a new algorithm. - forward the used algorithm from the miner
-
- May 22, 2018
-
-
psychocrypt authored
- 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
-
- May 12, 2018
-
-
psychocrypt authored
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`
-
- May 03, 2018
-
-
Tony Butler authored
-
- Apr 17, 2018
-
-
psychocrypt authored
- 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.
-
psychocrypt authored
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.
-
- Apr 02, 2018
-
-
psychocrypt authored
-rename `mining_fork_height` to `*_version`
-
- Apr 01, 2018
-
-
psychocrypt authored
- add `fork_height` to currency - refactor algorithm selection
-
- Mar 27, 2018
-
-
psychocrypt authored
- add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes
-
- Mar 25, 2018
-
-
xmr-stak-devs authored
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>
-
- Feb 28, 2018
-
-
psychocrypt authored
- reduce startup time for multi gpu systems - initialize the GPU memory non concurrent
-
- Jan 04, 2018
-
-
Brian Recchia authored
Changed capitalization of "macOS" Squashed the commit
-
- Dec 30, 2017
-
-
Doug Johnson authored
-
- Dec 22, 2017
-
-
fireice-uk authored
-
- Dec 01, 2017
-
-
psychocrypt authored
- add option `sync_mode` - update auto suggestion and jconf
-
- Nov 16, 2017
-
-
Unknown authored
Remove whitespace lines
-
psychocrypt authored
-
psychocrypt authored
- removed all space indention in `*.hpp` and `*.cpp` files
-
- Nov 15, 2017
-
-
fireice-uk authored
* CONF_NO_TLS fix * gpu error fix + always return to sched after pin
-
psychocrypt authored
- check if the gpu architecture is supported by the compiled miner binary - remove not supported gpus from the auto suggestion - disallow the selection of a not supported gpu by hand tuning the config
-
- Nov 14, 2017
-
-
Unknown authored
Pass threadno up the food chain
-
- Nov 10, 2017
-
-
psychocrypt authored
- add type of the backend to each backend-plugin - add `gteName` to `iBackend` to get the name of the backend
-
- Oct 28, 2017
-
-
psychocrypt authored
- fix windows linker error during compile - fix wrong parameter to call aeon (nvidia-backend)
-
- Oct 27, 2017
-
-
psychocrypt authored
- rename all `xmr` to `monero` - be insensitive while check for set currency - add function to compate two strings insensitive
-
psychocrypt authored
- add template parameter to kernel to support aeon and xmr - update auto suggestion
-
psychocrypt authored
- check if affinity vale before calling `thd_setaffinity`
-
- Oct 26, 2017
-
-
psychocrypt authored
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
-
- Oct 22, 2017
-
-
fireice-uk authored
-
fireice-uk authored
-
fireice-uk authored
-
fireice-uk authored
-
fireice-uk authored
-
- Oct 12, 2017
-
-
fireice-uk authored
-
- Oct 01, 2017
-
-
psychocrypt authored
use nicehash start nonce in all backends if nicehash is enabled
-
- Sep 30, 2017
-
-
psychocrypt authored
-
psychocrypt authored
-
psychocrypt authored
-
psychocrypt authored
- move source code to `src` - categorize files and move to group folder - change upper case class files to lower case - change C++ header to `*.hpp`
-
psychocrypt authored
- executor.h: expose log_`result_error()` - register wrong results
-