v0.10 / Nvidia CUDA / descrypt / ERROR: cuLaunchKernel() 701
#2
(12-08-2012, 04:22 AM)moujik Wrote:
Code:
$ ./cudaHashcat-lite64.bin -m 1500 MYDESCRYPTHASH
cudaHashcat-lite v0.10 by atom starting...

Password lengths range: 1 - 55
Watchdog: Temperature abort trigger set to 90c
Watchdog: Temperature retain trigger set to 80c
Device #1: GeForce 8600 GTS, 511MB, 1550Mhz, 4MCU

[s]tatus [p]ause [r]esume [q]uit => ERROR: cuLaunchKernel() 701

Nvidia drivers version: 304.48;
./cudaExample.sh works OK.

Any ideas?

CUDA_ERROR_LAUNCH_OUT_OF_RESOURCES
This indicates that a launch did not occur because it did not have appropriate resources.

This error usually indicates that the user has attempted to pass too many arguments to the device kernel, or the kernel launch specifies too many threads for the kernel's register count. Passing arguments of the wrong size (i.e. a 64-bit pointer when a 32-bit int is expected) is equivalent to passing too many arguments and can also result in this error.


Messages In This Thread
RE: v0.10 / Nvidia CUDA / descrypt / ERROR: cuLaunchKernel() 701 - by radix - 12-08-2012, 04:25 AM