Posts: 2
Threads: 1
Joined: Dec 2017
12-08-2017, 02:18 PM
(This post was last modified: 12-08-2017, 02:19 PM by FXHash.)
Hello,
i am try to run hashcat on two older nvidia gpus (9500GT) with 1 GB ram
and i am running in this error:
Code:
* Device #1: This device's local mem size is too small.
* Device #2: This device's local mem size is too small.
I cant't find the min. gpu mem specs. for running hashcat.
Can anyone help?
Thx
FXHash
Posts: 930
Threads: 4
Joined: Jan 2015
Hmm - not sure how this translates into total RAM, but the value checked by OpenCL in the code is here:
https://github.com/hashcat/hashcat/blob/...3076-L3085
Code:
CL_rc = hc_clGetDeviceInfo (hashcat_ctx, device_param->device, CL_DEVICE_LOCAL_MEM_SIZE, sizeof (device_local_mem_size), &device_local_mem_size, NULL);
if (CL_rc == -1) return -1;
if (device_local_mem_size < 32768)
{
event_log_error (hashcat_ctx, "* Device #%u: This device's local mem size is too small.", device_id + 1);
device_param->skipped = true;
}
~
Posts: 381
Threads: 1
Joined: Aug 2014
12-08-2017, 06:30 PM
(This post was last modified: 12-08-2017, 06:30 PM by Flomac.)
Posts: 2
Threads: 1
Joined: Dec 2017
Thank you for you replys.
I saw the code before, but i don't know how it is calculated, too.
My both cards have definitly 1GB ram.
Is is a Gainward GT 9500 with 1024MB ram.
Your link just shows "Standard Memory Config" from NVidia.