I am trying to get my miner working and I just can't get it hashing right. I took a 3 GPU rig (rx480's) running Windows 10 and downloaded Sgminer x64 5.3.8. I created a batch file with the following in it:
sgminer.exe -k tribus -o stratum_tcp://kawaiipool.party:8533 -u -p c=DNR
The miner fires up and runs by my 3 GPUs are not hashing, it just looks like my integrated GPU hashing at approx 300 KH/s. I got rid of the 16.9.2 AMD drivers and downloaded 17.4.
Any ideas? I am not married to any pools yet, I just want to get my farm pointed towards this coin!
Thanks,
Try booting with --gpu-platform 1:
sgminer.exe -k tribus --gpu-platform 1 -o stratum+tcp://pool.hashbag.cc:8688 -u -p c=DNR
to double check the gpu platform you want to run with run "sgminer.exe -n" it should show your gpu platforms that are installed, more than likely platform 0 is the intel opencl
If all else fails or if you just want to remove the intel opencl platform check in this registry key:
HKEY_LOCAL_MACHINE/Software/Khronos/OpenCL/Vendors OR
HKEY_LOCAL_MACHINE/Wow6432Node/Software/Khronos/OpenCL/Vendors
it should list your openCL vendors. if the intel opencl is in there set the DWORD value to 1, then it should disappear from the platform enumeration and your AMD OpenCL will be the '0'th gpu platform
This is what I have done so far and the results:
Uninstalled the AMD drivers and reinstalled the drivers recommended on the MSI website, which was Crimson ReLive 17.6.2;
Turned off the integrated graphics card in bios (DVI is plugged directly into AMD graphics card);
Ran sgminer.exe -n from command and received this:
CL Platform vendor: Intel Corporation
CL Platform name: Intel OpenCL
CL Platform version: OpenCL 2.0
Error -1: Getting Device IDs (num)
clDevicesNum returned error, no GPUs usable
Unable to load the NVIDIA Management Library
I tried adding the flag --gpu-platform 1 (and other iterations of this) and sgminer returned the error:
clDevicesNum returned error, no GPUs usable
All devices disabled, cannot mine!I modified the registry key HKEY_LOCAL_MACHINE/Software/Khronos/OpenCL/Vendors/.../IntelOpenCL64.dll and set the value to 1, and sgminer returned the error:
clDevicesNum returned error, no GPUs usable
All devices disabled, cannot mine!I am scratching my head right now, any ideas?