| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
change warning when precompiled OpenCL code is not found
|
|
|
|
|
|
|
| |
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>
|
|
|
|
| |
A redefinition of a variable in a local scope avoid that the intensity is rounded to a multiple of the work size.
|
|
|
|
|
|
|
| |
Reduce OpenCL start time by using a self made compiler cache.
- store compiled OpenCL binary
- load OpenCl binary if available
|
|
|
|
| |
fix double definition of define `MEM_CHUNK`
|
|\
| |
| | |
fix compile with OpenCL 1.1
|
| |
| |
| |
| | |
guard error types those are only defined in OpenCL >1.1
|
|\ \
| | |
| | | |
add Mesa OpenCL support
|
| |/
| |
| |
| | |
allow usage of Mesa OpenCl
|
|/
|
|
|
| |
- add new option `comp_mode` to the amd config
- disable `if guards` within opencl kernel if `comp_mode : false`
|
|\
| |
| | |
AMD: option `mem_chunk`and new `strided_index`
|
| |
| |
| |
| |
| | |
- add new option for `strided_index`
- add additional option if `strided_index == 2` to controll the memory chunk with
|
|/
|
|
| |
reduce usage of registers: based on the suggestion of @enerc77
|
|\
| |
| | |
improve AMD auto suggestion for AEON
|
| |
| |
| |
| | |
increase the intensity limit for AEON
|
|\ \
| | |
| | | |
fix output of gpu name
|
| |/
| |
| |
| | |
fix that the GPU name is printed before the name is querried from OpenCL
|
|/
|
|
|
| |
The AMD jconf.cpp would only accept an array. The config sample, and the nvidia and cpu config work with the value 'null', as they accept a 'kNullType'. This means at current, AMD GPUs could not be turned off, the config file wouldn't parse on load.
This change makes AMD consistent with the others, and can now be disabled.
|
|\
| |
| | |
Add warning and fallback when auto intensity is 0
|
| |
| |
| |
| |
| | |
- if the intensity is zero than do not suggest a config
- remove the links to old issues
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Occassionally the auto adjust doesn't find enough memory and the
intensity is detected too low and aligned to 0 with the compute units.
This patch fixes this situation by issuing a warning with a suggestion
to set environment vars and then ignoring the alignment to 0
Per several issues:
Principally:
https://github.com/fireice-uk/xmr-stak/issues/81
Related:
https://github.com/fireice-uk/xmr-stak/issues/490
https://github.com/fireice-uk/xmr-stak/issues/472
|
| |
| |
| |
| | |
revert the change that the OpenCl function `rotate` is used instead of `SKEIN_ROT`
|
| | |
|
| |
| |
| |
| |
| | |
- Eliminate modulus math (It runs slow inside microcode).
- Convert whatever the hell was going on into a rotate op. Like... Someone kinda reinvented the wheel in order to do a simple rotate.
|
|\ \
| | |
| | | |
update VEGA names for auto suggestion
|
| | |
| | |
| | |
| | | |
update VEGA names
|
|\ \ \
| |/ /
|/| | |
Updated config.tpl comments to include how to exclude CPU/GPUs
|
| |/ |
|
|\ \
| | |
| | | |
Rename "MacOS" to "macOS"
|
| |/
| |
| |
| |
| |
| | |
Changed capitalization of "macOS"
Squashed the commit
|
|\ \
| | |
| | | |
Modify invalid result report to show GPU id
|
| |/ |
|
|/
|
|
|
|
| |
remove branch differgences in AMD OpenCl code based on #454
a Please enter the commit message for your changes. Lines starting
|
| |
|
| |
|
| |
|
|\
| |
| | |
optimize aes round command queue
|
| |
| |
| |
| | |
unroll AES round by hand to help the compiler to optimize the command queue
|
| |
| |
| |
| | |
Change the default for strided index. Th euser feedback shows that strided_index = true will give a view hashes more per second.
|
|/
|
|
|
|
| |
Allow to change the indexing used to address the hash scratchpad memory.
- add option `strided_index` for each gpu
|
|
|
|
| |
Fix for AMD GPU detection on MacOS X
On MacOS X the platform is reported as Apple, and the vendor is reported as AMD.
|
|
|
| |
Fixing the compile error on MacOS X
|
|\
| |
| | |
fix max work size shown to user
|
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
handle OpenCL errors
|
| |/
| |
| |
| |
| | |
- handle opencl errors to avoid unexpected behaviors
- remove code duplicatio nwithin the some method
|
|/
|
|
|
|
| |
- 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
|
| |
|
| |
|
|
|
|
| |
- removed all space indention in `*.hpp` and `*.cpp` files
|