hashcat Forum
GetThermalSettings error ? - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html)
+--- Thread: GetThermalSettings error ? (/thread-5257.html)



GetThermalSettings error ? - Mem5 - 02-26-2016

Hello,

GPU : MSI GTX 980
OS : Win 8.1x64 / Nvidia 361.91
Cudahashcat 2.01

cmdline : --benchmark
Got :
Quote:WARN: NvAPI_GPU_GetThermalSettings() -1 NVAPI_ERROR

I quit, and launch it again and have :
Quote:ERROR: No NVidia compatible platform found

Any idea ?
Thank you !


RE: GetThermalSettings error ? - Mem5 - 02-27-2016

I did a complete re-install of the drivers ( uninstall + driver fusion + manual file deletion)
But the bug is still here.

Any ideas ?
Is it a hardware/GPU issue ? or software ? Should I reinstall OS ?


RE: GetThermalSettings error ? - Mem5 - 02-27-2016

I've check the source code of my error, located at https://github.com/hashcat/oclHashcat/blob/master/src/ext_nvapi.c


Code:
int hm_NvAPI_GPU_GetThermalSettings (NVAPI_PTR *nvapi, NvPhysicalGpuHandle hPhysicalGpu, NvU32 sensorIndex, NV_GPU_THERMAL_SETTINGS *pThermalSettings)
{
 if (!nvapi) return (-1);

 NvAPI_Status NvAPI_rc = nvapi->NvAPI_GPU_GetThermalSettings (hPhysicalGpu, sensorIndex, pThermalSettings);

 if (NvAPI_rc != NVAPI_OK)
 {
   NvAPI_ShortString string = { 0 };

   hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);

   log_info ("WARN: %s %d %s\n", "NvAPI_GPU_GetThermalSettings()", NvAPI_rc, string);
 }

It looks like NvAPI_rc != NVAPI_OK
Why ? Smile

Thank you.


RE: GetThermalSettings error ? - Mem5 - 03-06-2016

Seems like it came from the card itself. I changed it, it's ok now.