summaryrefslogtreecommitdiffstats
path: root/xmrstak
Commit message (Collapse)AuthorAgeFilesLines
* version update to 2.4.3psychocrypt2018-04-181-1/+1
|
* Merge pull request #1454 from psychocrypt/bbscoin-devfireice-uk2018-04-182-1/+3
|\ | | | | BBSCoin support and get ready for cryptonight v7 upgrade
| * update BBSCoinpsychocrypt2018-04-182-2/+2
| | | | | | | | | | | | - fix dev pool algorithms - add note to `pools.tpl` - remove pool suggestion
| * Add BBSCoin support and get ready for cryptonight v7 upgradeRan Ding2018-04-182-1/+3
| |
* | remove pool suggestionpsychocrypt2018-04-181-1/+1
| |
* | Update ITNS with v4 fork to CN v1Brian Oates2018-04-171-1/+1
|/ | | | Official Announcement: https://intensecoin.com/2018/04/16/imminent-hard-fork-and-network-attack/
* fix wrong unique_lock usagepsychocrypt2018-04-171-6/+6
| | | | | | | | | | | | clang warns about the wrong usage: ``` ``` xmrstak/net/jpsock.cpp:232:30: warning: parentheses were disambiguated as redundant parentheses around declaration of variable named 'job_mutex' [-Wvexing-parse] std::unique_lock<std::mutex>(job_mutex); ^~~~~~~~~~~ xmrstak/net/jpsock.cpp:232:30: note: add a variable name to declare a 'std::unique_lock<std::mutex>' initialized with 'job_mutex' std::unique_lock<std::mutex>(job_mutex); ```
* add missing EOadd missing EOFpsychocrypt2018-04-171-1/+1
|
* remove fork for sumokoin and moneropsychocrypt2018-04-172-17/+17
| | | | remove fork version for sumokoin and monero7
* add independent dev pool coin descriptionpsychocrypt2018-04-1713-89/+141
| | | | | | | | | | | | | | - 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.
* fix wrong algo selectionpsychocrypt2018-04-173-8/+36
| | | | | 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.
* Merge pull request #1112 from psychocrypt/topic-nvidiaOpenCLfireice-uk2018-04-177-15/+73
|\ | | | | allow non AMD OpenCL driver and devices
| * allow non AMD OpenCL driver and devicespsychocrypt2018-04-147-15/+73
| | | | | | | | | | | | - 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
* | Merge pull request #1375 from psychocrypt/topic-exposeOrinalAlgorithmsfireice-uk2018-04-172-3/+14
|\ \ | | | | | | expose original algorithm
| * | expose original algorithmpsychocrypt2018-04-142-3/+14
| |/ | | | | | | | | - expose cryptonight_lite_v7, cryptonight_heavy and cryptonight_v7 - remove cryptonight_lite
* | fix a few conversion warningspsychocrypt2018-04-149-15/+16
| | | | | | | | - fix conversion from large type tp small
* | change 64Bit size value to 32Bitpsychocrypt2018-04-146-24/+26
|/ | | | avoid conversion warning by reducing the size value type
* Update graft algorithm with graft fork supportJason Rhinelander2018-04-131-1/+1
| | | | | | | | | | Graft is forking soon, with updated software released yesterday, to what will be v8 in Graft (current Graft cryptonight algorithm is graft v7). This commit updates the `graft` algorithm to recognize the fork and switch algorithms. Fork annoucement: https://www.graft.network/2018/04/12/patch-1-1-1-released-major-network-update-block-65110/
* refactor scratchpad creationpsychocrypt2018-04-086-11/+35
| | | | Use the maximum scratchpad size from before and after the fork.
* amd simplify kernel for different algorithmspsychocrypt2018-04-084-431/+295
| | | | | | | - 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`
* Merge pull request #1324 from takeshibaconsuzuki/devpsychocrypt2018-04-061-2/+2
|\ | | | | Fix spelling mistake in gpu.cpp
| * Fix spelling mistake in gpu.cppTakeshi Suzuki2018-04-051-2/+2
| |
* | Merge pull request #1327 from Spudz76/devpsychocrypt2018-04-0628-31/+31
|\ \ | | | | | | Repair all 'namepsace' to 'namespace' (all within comments)
| * | Repair more typos in comments onlyTony Butler2018-04-055-6/+6
| | |
| * | Repair all 'namepsace' to 'namespace' (all within comments)Tony Butler2018-04-0525-25/+25
| |/
* | Merge pull request #1317 from ridd84/devfireice-uk2018-04-062-0/+2
|\ \ | | | | | | Add CROAT coin
| * | Add CROAT coinridd842018-04-052-0/+2
| |/
* | Add support for Haven (XHV) using CryptoNight Heavyhavenprotocol2018-04-052-0/+2
|/
* increase version to 2.4.2psychocrypt2018-04-041-1/+1
|
* NVIDIA: fix sumokoinpsychocrypt2018-04-041-26/+20
| | | | | | | | 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
* fix cuda architecture detectionpsychocrypt2018-04-041-1/+1
| | | | | | fix #1297 If sm_20 is mixed with other architectures the detection for the minimal supported architecture is broken.
* AMD OpenCL: fix sumokoinpsychocrypt2018-04-032-4/+13
| | | | - fix that version argument was not passed to extended kernel parameters
* Merge pull request #1277 from psychocrypt/topic-increaseVersionTo240fireice-uk2018-04-021-1/+1
|\ | | | | increase version for release to 2.4.0
| * increase version for release to 2.4.0psychocrypt2018-04-021-1/+1
| |
* | change `height` to `version`psychocrypt2018-04-025-8/+8
| | | | | | | | -rename `mining_fork_height` to `*_version`
* | add stellite coinpsychocrypt2018-04-011-0/+1
| |
* | refactor mining algo selectionpsychocrypt2018-04-0110-102/+90
|/ | | | | - add `fork_height` to currency - refactor algorithm selection
* Merge pull request #1271 from fireice-uk/topic-algo-reportpsychocrypt2018-04-011-2/+5
|\ | | | | Add cn-heavy to algo report
| * Add cn-heavy to algo reportfireice-uk2018-04-011-2/+5
| |
* | fix OpenCl AMD on OSXpsychocrypt2018-04-011-4/+1
|/ | | | | | fix #1218 - remove inline function with ugly macro :-(
* Merge pull request #1263 from fireice-uk/topic-nicehash-workaroundpsychocrypt2018-03-311-0/+6
|\ | | | | Yet another nicehash workaround -.-
| * Yet another nicehash workaround -.-fireice-uk2018-03-311-0/+6
| |
* | Add filename to backend errorsfireice-uk2018-03-313-16/+16
|/
* Merge pull request #1236 from psychocrypt/topic-powAeonv7fireice-uk2018-03-2912-111/+163
|\ | | | | POW AEON v7
| * github annotationspsychocrypt2018-03-293-22/+9
| | | | | | | | | | | | - documentation: change `aeon` to `aeon7` - change `case` order in `switch` statements - update README.txt
| * POW AEON v7psychocrypt2018-03-2711-102/+167
| | | | | | | | | | - add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes
* | add cli option `--noAMDCache`psychocrypt2018-03-283-21/+32
| | | | | | | | | | | | allow to disable the OpenCl cache - usefull for read only systems - usefull for unknown errors during cache reading
* | Merge pull request #1240 from psychocrypt/fix-parenthesesWarningfireice-uk2018-03-281-1/+1
|\ \ | | | | | | fix parentheses warning
| * | fix parentheses warningpsychocrypt2018-03-271-1/+1
| |/ | | | | | | | | | | | | | | | | 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) ```
* | fix autoAdjust(non hwloc)psychocrypt2018-03-261-12/+2
|/ | | | - remove call `IsCurrencyMonero` with `cn_select_memory`
OpenPOWER on IntegriCloud