- Dec 06, 2017
-
-
Unknown authored
Clean up the x-mas tree
-
- Dec 03, 2017
-
-
psychocrypt authored
unroll AES round by hand to help the compiler to optimize the command queue
-
- Dec 02, 2017
-
-
psychocrypt authored
Allow to change the indexing used to address the hash scratchpad memory. - add option `strided_index` for each gpu
-
- Nov 21, 2017
-
-
ExceptionallyGreat authored
Fix for AMD GPU detection on MacOS X On MacOS X the platform is reported as Apple, and the vendor is reported as AMD.
-
ExceptionallyGreat authored
Fixing the compile error on MacOS X
-
- Nov 18, 2017
-
-
psychocrypt authored
The max work size shown to the user was the hardware maximum but not take in account thet some kernel spwning 8 times more threads per work group than configured by the user.
-
psychocrypt authored
- handle opencl errors to avoid unexpected behaviors - remove code duplicatio nwithin the some method
-
psychocrypt authored
- enforce that only host side OpenCl 1.2 functions are used if the miner is compiled with `XMR-STAK_COMPILE=generic` - update documentation - add CMake option `XMR-STAK_COMPILE` to windows
-
- Nov 16, 2017
-
-
Unknown authored
Remove whitespace lines
-
psychocrypt authored
- removed all space indention in `*.hpp` and `*.cpp` files
-
- 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 compile parameter to support aeon and xmr - update auto suggestion to handle aeon
-
- Oct 24, 2017
-
-
psychocrypt authored
- remove 32bit target value - use always 64bit target for amd backend
-
- Oct 22, 2017
-
-
fireice-uk authored
-
- Oct 20, 2017
-
-
psychocrypt authored
fix bug announced in #52 If the miner is compiled in debug mode the assert condition results in a compile time error.
-
- Oct 10, 2017
-
-
psychocrypt authored
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).
-
- Oct 06, 2017
-
-
psychocrypt authored
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.
-
- Oct 05, 2017
-
-
psychocrypt authored
check that the number of global threads is a multiple of the workgroup size
-
- Oct 04, 2017
-
-
psychocrypt authored
The number of threads within a kernel must be a multiple of the worksize. If not it can crash on some systems.
-
- Sep 30, 2017
-
-
psychocrypt authored
- string literal can only be 16kbyte
-
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`
-