Safe power draw
#7
It's not weird behavior and it's not specific to Nvidia by any means. You need host buffers for the device buffers. When you allocate a buffer on the device, you have to allocate a buffer on the host as well. Otherwise how else would you get the results? If you have 8GB of VRAM per device, you could conceivably allocate 100% of that (yes, a misinterpretation of the OpenCL spec results in most vendors limiting each allocation to 25% of VRAM, but you can in fact allocate multiple buffers.) If you're allocating 8GB of buffers on each device, and you have eight devices, you could conceivably need to allocate 64GB of buffers on the host as well. If the host cannot allocate 64GB of RAM for Hashcat, it will crash with CL_OUT_OF_HOST_MEMORY. At an absolute minimum available host memory should never be less than VRAM * 0.25, but the rule of thumb is RAM >= VRAM.

Keep in mind that password cracking is not cryptocurrency mining, and most mining rig setups suck for password cracking.


Messages In This Thread
Safe power draw - by elidell - 10-07-2018, 03:23 PM
RE: Safe power draw - by soxrok2212 - 10-07-2018, 05:27 PM
RE: Safe power draw - by elidell - 10-07-2018, 06:23 PM
RE: Safe power draw - by undeath - 10-07-2018, 06:06 PM
RE: Safe power draw - by elidell - 10-07-2018, 06:21 PM
RE: Safe power draw - by undeath - 10-07-2018, 07:35 PM
RE: Safe power draw - by elidell - 10-12-2018, 02:58 AM
RE: Safe power draw - by epixoip - 10-07-2018, 08:43 PM
RE: Safe power draw - by niceguy123 - 10-17-2018, 07:22 AM
RE: Safe power draw - by epixoip - 10-08-2018, 11:05 PM
RE: Safe power draw - by elidell - 10-09-2018, 12:01 AM
RE: Safe power draw - by elidell - 10-09-2018, 12:07 AM
RE: Safe power draw - by epixoip - 10-09-2018, 12:30 AM
RE: Safe power draw - by epixoip - 10-12-2018, 03:45 AM
RE: Safe power draw - by philsmd - 10-17-2018, 08:59 AM
RE: Safe power draw - by niceguy123 - 10-18-2018, 06:06 AM