- May 08, 2018
-
-
Jason Rhinelander authored
-
- May 04, 2018
-
-
psychocrypt authored
- initialize miner_work iPoolId in the default constructor with the invalid pool id - move definition of `pool_data` into an own file
-
- May 03, 2018
-
-
Tony Butler authored
-
- May 01, 2018
-
-
psychocrypt authored
solve #1494 - add algorithm `cryptonight_v7_stellite` (internal named: `cryptonight_stellite`)
-
- Apr 22, 2018
-
-
psychocrypt authored
- add algorithm `cryptonight_lite_v7_xor` - update documentation
-
psychocrypt authored
- fix that to much OpenCL calls whre used if cache is disabled
-
- Apr 19, 2018
-
-
Vladimir Tamara authored
-
- Apr 17, 2018
-
-
psychocrypt authored
remove fork version for sumokoin and monero7
-
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 14, 2018
-
-
psychocrypt authored
- add CLI flag to explicitly use non AMD OpenCL and devices - adjust OpenCL output (use OpenCL instead of AMD if --altOpenCL is sued) - optimize NVIDIA OpenCL auto suggestion
-
psychocrypt authored
- fix conversion from large type tp small
-
psychocrypt authored
avoid conversion warning by reducing the size value type
-
- Apr 08, 2018
-
-
psychocrypt authored
Use the maximum scratchpad size from before and after the fork.
-
psychocrypt authored
- remove version numbers within the kernel - create seperate program context for each mining algorithm - remove kernel `cn1_monero` is now integrated in `cn1` - remname `cnX` kernel in `cnX + algorithmNumber`
-
- Apr 06, 2018
-
-
Tony Butler authored
-
Tony Butler authored
-
Takeshi Suzuki authored
-
- Apr 04, 2018
-
-
psychocrypt authored
sumokoin is broken if `bfactor >= 5` is used (default for windows) sumokoin for `sm_20` is broken due to the missing extern shared memory - call phase3 kernel two times if sumokoin is enabled - create extern shared memory for phase3 kernel
-
psychocrypt authored
fix #1297 If sm_20 is mixed with other architectures the detection for the minimal supported architecture is broken.
-
- Apr 03, 2018
-
-
psychocrypt authored
- fix that version argument was not passed to extended kernel parameters
-
- Apr 02, 2018
-
-
psychocrypt authored
-rename `mining_fork_height` to `*_version`
-
- Apr 01, 2018
-
-
psychocrypt authored
- add `fork_height` to currency - refactor algorithm selection
-
psychocrypt authored
fix #1218 - remove inline function with ugly macro :-(
-
- Mar 31, 2018
-
-
fireice-uk authored
-
- Mar 29, 2018
-
-
psychocrypt authored
- documentation: change `aeon` to `aeon7` - change `case` order in `switch` statements - update README.txt
-
- Mar 28, 2018
-
-
psychocrypt authored
allow to disable the OpenCl cache - usefull for read only systems - usefull for unknown errors during cache reading
-
- Mar 27, 2018
-
-
psychocrypt authored
fix warning ``` /Users/user/xmr-stak/xmrstak/backend/amd/amd_gpu/gpu.cpp:481:11: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] if( ret = clGetProgramInfo(ctx->Program, CL_PROGRAM_BINARIES, num_devices * sizeof(char*), all_programs.data(),NULL) != CL_SUCCESS) ```
-
psychocrypt authored
- add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes
-
- Mar 26, 2018
-
-
psychocrypt authored
- remove call `IsCurrencyMonero` with `cn_select_memory`
-
- Mar 25, 2018
-
-
psychocrypt authored
revert #1198, the block size is limited to 84byte
-
psychocrypt authored
change warning when precompiled OpenCL code is not found
-
psychocrypt authored
-
Juan Leni authored
-
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>
-
- Mar 13, 2018
-
-
psychocrypt authored
A redefinition of a variable in a local scope avoid that the intensity is rounded to a multiple of the work size.
-
- Mar 03, 2018
-
-
psychocrypt authored
Reduce OpenCL start time by using a self made compiler cache. - store compiled OpenCL binary - load OpenCl binary if available
-
Bryan Stitt authored
-
- Feb 28, 2018
-
-
psychocrypt authored
- reduce startup time for multi gpu systems - initialize the GPU memory non concurrent
-
- Feb 21, 2018
-
-
psychocrypt authored
fix double definition of define `MEM_CHUNK`
-