- 07 Feb, 2019 2 commits
-
-
psychocrypt authored
cryptonight_turtle is only cryptonight_v8 with a different scratchpad, iteration and mask value. We are using now the new machanism to describe such derived POWs.
-
psychocrypt authored
A POW is now defined by a function `f` and three degrees of freedom `f(iteration, scratchpad, mask)`. `f` is the base algorithm like `cryptonight, cryptonight_gpu` An easy to pars snytax to write the full POW definition down is: `cryptonight_gpu:0x0000c000:0x00200000:0x001fffc0` This change make it very easy to integrate the new trend of variate the number of iteations or the scratchpad size without modifying the full code.
-
- 04 Feb, 2019 6 commits
-
-
fireice-uk authored
OpencL: fix cn_gpu
-
fireice-uk authored
fix missing algorithm name
-
fireice-uk authored
CUDA. fix static in global kernel
-
psychocrypt authored
If comp_mode is used the code will not compile. - fix compile issue - fix wrong conditions to handle `comp_mode`
-
psychocrypt authored
During the implementation of `cryptonight_gpu` we missed to add the name of the algorithm to jpsock. - add function to translate an algorithm into a name.
-
psychocrypt authored
Remove `static constexpr` within the global kernel. This is not supported by all CUDA versions.
-
- 03 Feb, 2019 3 commits
-
-
fireice-uk authored
update version to 2.8.0
-
fireice-uk authored
update documentation
-
fireice-uk authored
coin cleanup
-
- 02 Feb, 2019 5 commits
-
-
psychocrypt authored
-
psychocrypt authored
- remove driver warning - add link to supported card y the ROCm driver
-
fireice-uk authored
OpenCL: fix Blake hashing
-
psychocrypt authored
- rename `Intense` to `Lethean` - remove `masari` and `stellite`, both hase forked to a currently unsupported algorithm
-
psychocrypt authored
Windows driver creates wrong code if unroll is used.
-
- 01 Feb, 2019 10 commits
-
-
fireice-uk authored
OpenCL: fix work size message
-
fireice-uk authored
CUDA: optimze cn_gpu auto suggestion
-
fireice-uk authored
OpenCL: use algorithm names instead of number
-
fireice-uk authored
add ryo algorithm fork
-
fireice-uk authored
cuda: optimize cn-gpu
-
psychocrypt authored
Fix message with the maximal allowed worksize if cryptonight_gpu is used.
-
psychocrypt authored
optimize the algorithm for cryptonight_gpu autosuggestion
-
psychocrypt authored
switch with block 6 to cryptonigh_gpu (https://github.com/ryo-currency/ryo-currency/blob/7bc5dc40864e518753807d04c17d617f728da156/src/cryptonote_config.h#L185)
-
psychocrypt authored
psychocrypt committed 9 minutes ago - use precomuted indicies within the loop - `cn_explode_gpu` use all threads to load the state
-
psychocrypt authored
Use the algorithm names from `cryptonight.hpp` instead if number within the OpenCL kernel.
-
- 30 Jan, 2019 5 commits
-
-
fireice-uk authored
fix cuda 10
-
psychocrypt authored
- fix race condition during shared memory access - optimize memory access
-
psychocrypt authored
Implement CN-GPU Proof-of-Work Algo
-
psychocrypt authored
- fix broken trutle coin - fix non cn_gpu algorithms
-
fireice-uk authored
Co-authored-by: psychocrypt <psychocryptHPC@gmail.com> Co-authored-by: fireice-uk <fireice-uk@users.noreply.github.com>
-
- 29 Jan, 2019 1 commit
-
-
fireice-uk authored
Add Support for TurtleCoin Upcoming Fork
-
- 25 Jan, 2019 4 commits
-
-
Brandon Lehmann authored
-
fireice-uk authored
(web) Add currency to results report web (and cli)
-
fireice-uk authored
(web) Add Rig ID to connection status web (and cli)
-
fireice-uk authored
(web) Add backend thread tags to Thread IDs on Hashrate Report
-
- 09 Jan, 2019 1 commit
-
-
fireice-uk authored
refactor POW selection algorithm
-
- 29 Dec, 2018 3 commits
-
-
psychocrypt authored
Avoid that we do multiple lookups to `std::map` to find the OpenCL kernel binaries.
-
psychocrypt authored
- add helper method `GetAllAlgorithms()` to get all active POW algorithms - select max scratchpad memory size based on the dev pool and user algorithms
-
psychocrypt authored
In the current implementation the POW algorithm in dev pool section of a currency will not be taken into account during the binary creation. This PR changes the behavior and allow to create binaries for more than two POW algorihms.
-