* Device #1: This device's local mem size is too small.
#3
Thx for reply.But am I basically supposed to understand or analyze 5.3k lines of code or what?
Lets say I will focus just on these lines:
Code:
     // device_local_mem_size

     cl_ulong device_local_mem_size;

     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;

And I still have completely no idea what is the cause of this.
My gpu can be too old, ok... So it should just use cpu but its like it doesnt detect any?

I dont know, maybe im missing some opencl lib in my sys? :
Code:
#pacman -Ss opencl | grep installed
extra/libclc 0.2.0+344+17648cd-1 [installed]
extra/ocl-icd 2.2.11-1 [installed]
extra/opencl-nvidia-340xx 340.102-8 [installed]
community/luxmark 3.1-4 [installed]
multilib/lib32-opencl-nvidia-340xx 340.102-3 [installed]


Messages In This Thread
RE: * Device #1: This device's local mem size is too small. - by lispustynny - 05-21-2017, 06:32 PM