mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 04:54:26 +00:00
Add support for latest ATI SDK on windows.
This commit is contained in:
parent
d90e36d926
commit
9a3ae2660e
6
ocl.c
6
ocl.c
@ -359,7 +359,8 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize)
|
||||
(strstr(vbuff, "844.4") || // Linux 64 bit ATI 2.6 SDK
|
||||
strstr(vbuff, "851.4") || // Windows 64 bit ""
|
||||
strstr(vbuff, "831.4") ||
|
||||
strstr(vbuff, "898.1"))) { // 12.2 driver SDK
|
||||
strstr(vbuff, "898.1") || // 12.2 driver SDK
|
||||
strstr(vbuff, "923.1"))) { // 12.4 driver SDK
|
||||
applog(LOG_INFO, "Selecting diablo kernel");
|
||||
clState->chosen_kernel = KL_DIABLO;
|
||||
/* Detect all 7970s, older ATI and NVIDIA and use poclbm */
|
||||
@ -376,7 +377,8 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize)
|
||||
clState->chosen_kernel = gpus[gpu].kernel;
|
||||
if (clState->chosen_kernel == KL_PHATK &&
|
||||
(strstr(vbuff, "844.4") || strstr(vbuff, "851.4") ||
|
||||
strstr(vbuff, "831.4") || strstr(vbuff, "898.1"))) {
|
||||
strstr(vbuff, "831.4") || strstr(vbuff, "898.1") ||
|
||||
strstr(vbuff, "923.1"))) {
|
||||
applog(LOG_WARNING, "WARNING: You have selected the phatk kernel.");
|
||||
applog(LOG_WARNING, "You are running SDK 2.6 which performs poorly with this kernel.");
|
||||
applog(LOG_WARNING, "Downgrade your SDK and delete any .bin files before starting again.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user