mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 20:44:19 +00:00
Revert "Fix ADL gpu-map not working when there are more ADL devices than openCL. Patch supplied and tested by Nite69."
This reverts commit 2a474fe914524b20e0108396ab9bb873fba820ad. Broken.
This commit is contained in:
parent
cadc7d762a
commit
78d6019330
19
adl.c
19
adl.c
@ -339,17 +339,16 @@ void init_adl(int nDevs)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (gpu = 0; gpu < nDevs; gpu++) {
|
for (gpu = 0; gpu < devices; gpu++) {
|
||||||
struct gpu_adl *ga;
|
struct gpu_adl *ga;
|
||||||
int iAdapterIndex;
|
int iAdapterIndex;
|
||||||
int lpAdapterID;
|
int lpAdapterID;
|
||||||
ADLODPerformanceLevels *lpOdPerformanceLevels;
|
ADLODPerformanceLevels *lpOdPerformanceLevels;
|
||||||
int lev, adlGpu;
|
int lev;
|
||||||
|
|
||||||
adlGpu = gpus[gpu].virtual_adl;
|
i = vadapters[gpu].id;
|
||||||
i = vadapters[adlGpu].id;
|
|
||||||
iAdapterIndex = lpInfo[i].iAdapterIndex;
|
iAdapterIndex = lpInfo[i].iAdapterIndex;
|
||||||
gpus[gpu].virtual_gpu = vadapters[adlGpu].virtual_gpu;
|
gpus[gpu].virtual_gpu = vadapters[gpu].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);
|
||||||
@ -359,11 +358,11 @@ void init_adl(int nDevs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (gpus[gpu].deven == DEV_DISABLED) {
|
if (gpus[gpu].deven == DEV_DISABLED) {
|
||||||
gpus[gpu].gpu_engine =
|
gpus[i].gpu_engine =
|
||||||
gpus[gpu].gpu_memclock =
|
gpus[i].gpu_memclock =
|
||||||
gpus[gpu].gpu_vddc =
|
gpus[i].gpu_vddc =
|
||||||
gpus[gpu].gpu_fan =
|
gpus[i].gpu_fan =
|
||||||
gpus[gpu].gpu_powertune = 0;
|
gpus[i].gpu_powertune = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user