1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-17 04:08:34 +00:00

Merge pull request #217 from magnumripper/master

Use device's preferred vector width, not its native one.
This commit is contained in:
Jens Steube 2016-02-11 10:08:57 +01:00
commit 10dc25f807

View File

@ -12526,11 +12526,11 @@ int main (int argc, char **argv)
{ {
if (tuningdb_entry->vector_width == -1) if (tuningdb_entry->vector_width == -1)
{ {
hc_clGetDeviceInfo (data.ocl, device_param->device, CL_DEVICE_NATIVE_VECTOR_WIDTH_INT, sizeof (vector_width), &vector_width, NULL);
if (opti_type & OPTI_TYPE_USES_BITS_64) if (opti_type & OPTI_TYPE_USES_BITS_64)
{ {
if (vector_width > 1) vector_width /= 2; hc_clGetDeviceInfo (data.ocl, device_param->device, CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG, sizeof (vector_width), &vector_width, NULL);
} else {
hc_clGetDeviceInfo (data.ocl, device_param->device, CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT, sizeof (vector_width), &vector_width, NULL);
} }
} }
else else