Rolf - thanks for the robust testing!
Rolf wrote:It cracked my test MD4 hash, the speed was ~1900M p/s using autotune.
Right now, autotune actually is ignored. I've replaced it with improved block/thread count based on general GPU size. I really need to prune old arguments out. It was in place because I didn't have good defaults, but at this point, since I have 3 sets of default block/thread counts, it's much closer to optimum.
Rolf wrote:However, it did not close/shutdown after finding 1 hash out of the hashlist, and continued cracking.
Known issue. There is an "--exit-after" option (unsure as to the exact parameter) that will stop after the specified number of hashes, but the current release doesn't check to see if you've cracked all the hashes. I've fixed this on password length change, but you raise the point that I should also check after each found hash & exit if everything has been found. That's a quick fix that will get in the next release.
Rolf wrote:Generated 100 [7;7] loweralpha-numeric plains and 900 of other charset, hashed it with NTLM() and fed to multiforcer. Multiforcer cracked precisely 100 hashes and outputted em right. GJ.
Generated 100 [9;9] and 100 [10;10] numeric plains, mixed em with crap, hashed with MD5(). Multiforcer did not miss a single hash. Stable in that department.
Awesome

I've spent a lot of time trying to make sure it's 100% solid in actually finding all hashes. Glad to hear it passed your tests as well!
Rolf wrote:What does the zero copy option do?
Enables CUDA zero copy?

Certain GPUs can access host memory directly (GTX200, Fermis, integrated chipsets). Zero copy uses this functionality. It doesn't have much benefit on the discrete GPUs, but for laptops that share host memory with the GPU, it allows you to simply have the GPU access the application memory space directly instead of copying from host memory to another chunk of host memory. I added it for curiosity, but it doesn't seem to have much of any performance impact.
Rolf wrote:Is there a way to "dump" parameters, which autotune picked as best ?
Since it doesn't actually do anything right now, no.
I am working on a wiki for the site that will contain a lot more information on the command lines/etc. I should be able to get it up this weekend - I've got a local dev copy I've been updating.
Thanks for the testing!