mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-25 14:04:25 +00:00
Fix ADL gpu-map not working when there are more ADL devices than openCL. Patch supplied and tested by Nite69.
This commit is contained in:
parent
8745ba1e6d
commit
2a474fe914
19
adl.c
19
adl.c
@ -339,16 +339,17 @@ void init_adl(int nDevs)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (gpu = 0; gpu < devices; gpu++) {
|
for (gpu = 0; gpu < nDevs; gpu++) {
|
||||||
struct gpu_adl *ga;
|
struct gpu_adl *ga;
|
||||||
int iAdapterIndex;
|
int iAdapterIndex;
|
||||||
int lpAdapterID;
|
int lpAdapterID;
|
||||||
ADLODPerformanceLevels *lpOdPerformanceLevels;
|
ADLODPerformanceLevels *lpOdPerformanceLevels;
|
||||||
int lev;
|
int lev, adlGpu;
|
||||||
|
|
||||||
i = vadapters[gpu].id;
|
adlGpu = gpus[gpu].virtual_adl;
|
||||||
|
i = vadapters[adlGpu].id;
|
||||||
iAdapterIndex = lpInfo[i].iAdapterIndex;
|
iAdapterIndex = lpInfo[i].iAdapterIndex;
|
||||||
gpus[gpu].virtual_gpu = vadapters[gpu].virtual_gpu;
|
gpus[gpu].virtual_gpu = vadapters[adlGpu].virtual_gpu;
|
||||||
|
|
||||||
/* Get unique identifier of the adapter, 0 means not AMD */
|
/* Get unique identifier of the adapter, 0 means not AMD */
|
||||||
result = ADL_Adapter_ID_Get(iAdapterIndex, &lpAdapterID);
|
result = ADL_Adapter_ID_Get(iAdapterIndex, &lpAdapterID);
|
||||||
@ -358,11 +359,11 @@ void init_adl(int nDevs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (gpus[gpu].deven == DEV_DISABLED) {
|
if (gpus[gpu].deven == DEV_DISABLED) {
|
||||||
gpus[i].gpu_engine =
|
gpus[gpu].gpu_engine =
|
||||||
gpus[i].gpu_memclock =
|
gpus[gpu].gpu_memclock =
|
||||||
gpus[i].gpu_vddc =
|
gpus[gpu].gpu_vddc =
|
||||||
gpus[i].gpu_fan =
|
gpus[gpu].gpu_fan =
|
||||||
gpus[i].gpu_powertune = 0;
|
gpus[gpu].gpu_powertune = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user