12-08-2017, 05:00 PM
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
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;
}
~