Minimun GPU mem requirements
#2
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;
      }
~


Messages In This Thread
Minimun GPU mem requirements - by FXHash - 12-08-2017, 02:18 PM
RE: Minimun GPU mem requirements - by royce - 12-08-2017, 05:00 PM
RE: Minimun GPU mem requirements - by Flomac - 12-08-2017, 06:30 PM
RE: Minimun GPU mem requirements - by FXHash - 12-08-2017, 07:34 PM