summaryrefslogtreecommitdiffstats
path: root/xmrstak/backend
Commit message (Collapse)AuthorAgeFilesLines
...
* | remove the gpu_thread_num safetyfireice-uk2017-10-122-7/+0
|/
* Merge pull request #24 from psychocrypt/fix-amdEarlyReturnfireice-uk2017-10-111-335/+376
|\ | | | | remove early returns
| * remove early returnspsychocrypt2017-10-101-335/+376
| | | | | | | | | | | | | | | | | | | | | | | | Early returns within a kernel can have unexpected behavior, this strongly depends on the opencl runtime compiler. To avoid errors all early returns are removed. There is no negative effect(e.g.performance) if the threads stay alive up to the end of the kernel. One source for the early return is: http://al-key-opencl.blogspot.de/2014/09/be-careful-not-to-mix-early-return-and.html This pull request also fix a race condition where all fill the shared memory. Also a bug introduced with #16 is fixed, because of the early return not was possible that the last block works with an wrong initilized shared memory (result should be a wrong hash if the result target size is valid).
* | improve AMD auto suggestionpsychocrypt2017-10-101-2/+7
|/ | | | | - use always a multiple of the number of compute units - add more device information to the config file
* avoid possible illegal memory accesspsychocrypt2017-10-062-8/+31
| | | | | Is is possible that the number of results are greater than the result output array, in this case invalid memory can be access within the device and on the host side.
* Merge pull request #16 from psychocrypt/fix-invalidKernelCallfireice-uk2017-10-062-24/+64
|\ | | | | fix invalid kernel call parameter
| * add assert to validate number of global threadspsychocrypt2017-10-051-0/+5
| | | | | | | | check that the number of global threads is a multiple of the workgroup size
| * fix invalid kernel call parameterpsychocrypt2017-10-052-24/+59
| | | | | | | | | | The number of threads within a kernel must be a multiple of the worksize. If not it can crash on some systems.
* | Merge pull request #19 from fireice-uk/topic-crash-fixpsychocrypt2017-10-062-4/+16
|\ \ | | | | | | Port the crash fix from xmr-stak-cpu
| * | Port the crash fix from xmr-stak-cpufireice-uk2017-10-052-4/+16
| | |
* | | Merge pull request #12 from fireice-uk/topic-large-pages-winpsychocrypt2017-10-052-5/+91
|\ \ \ | |/ / |/| | Fix large pages on Windows and make them more user-friendly
| * | put global into proper placefireice-uk2017-10-041-1/+2
| | |
| * | Add a suggestion to reboot in cases where it might helpfireice-uk2017-10-041-1/+10
| | |
| * | - Add large page initialisation on Windowsfireice-uk2017-10-042-4/+80
| |/ | | | | | | | | - Add a proper UAC manifest requesting elevation when we start - Fix self_test() - this is integral part of initialisation
* | Merge pull request #13 from psychocrypt/fix-amdAutoDetectionfireice-uk2017-10-051-3/+5
|\ \ | | | | | | fix amd auto suggestion
| * | fix amd auto suggestionpsychocrypt2017-10-041-3/+5
| |/ | | | | | | | | | | Platform index zero was always used to search for the device detection. Fix: use correct detected AMD platform index
* | Merge pull request #14 from psychocrypt/fix-nicehashSupportfireice-uk2017-10-051-2/+2
|\ \ | | | | | | fix broken nicehash support
| * | fix broken nicehash supportpsychocrypt2017-10-041-2/+2
| |/ | | | | | | - add nicehash flag back to `miner_work`
* | Further software aes optimisationfireice-uk2017-10-051-25/+23
| |
* | Cleaned up, so persons not very proficient in C macros, like hyc_symas don't ↵fireice-uk2017-10-051-99/+14
| | | | | | | | cry about obfuscation
* | rename soft_aes.cfireice-uk2017-10-042-3/+2
|/
* readd nicehash pool supportpsychocrypt2017-10-012-2/+11
| | | | use nicehash start nonce in all backends if nicehash is enabled
* nvidia: fix return value if no device is foundpsychocrypt2017-09-302-5/+3
|
* remove auto conf from jsonpsychocrypt2017-09-301-2/+0
|
* fix windows compilepsychocrypt2017-09-301-1/+2
| | | | - string literal can only be 16kbyte
* fix clang CUDA compilepsychocrypt2017-09-301-1/+1
| | | | | | - add clang compile section - cleanup CMake file - fix missing return value
* use call prefix to load backendspsychocrypt2017-09-301-1/+2
|
* rename `Params` to `params`psychocrypt2017-09-3011-17/+17
|
* fix compilepsychocrypt2017-09-3018-150/+126
|
* cleanup includespsychocrypt2017-09-3027-149/+160
|
* group filespsychocrypt2017-09-3064-0/+13316
- 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`
OpenPOWER on IntegriCloud