need help with sha512
#20
In fact, sha512unix is not very much faster on GPU as compared to CPU. If bruteforcing 5-char passwords is not practical on CPUs (your charset is too large?), then it's very likely it won't be practical on GPUs too.

The algorithm itself is moderately GPU-unfriendly because of the 64-bit operations that are not natively supported on GPUs and are emulated in software. But the biggest problem is that the GPR pressure is so high that you cannot utilize the hardware properly. The GPU just cannot run enough wavefronts due to limited resources and ALU units end up underutilized. There is also a paradox, under certain circumstances, sha512unix can be made faster by offloading part of the algorithm on the CPU rather than doing all of it on the GPU.


Messages In This Thread
need help with sha512 - by Gelle - 07-08-2012, 12:21 PM
RE: need help with sha512 - by epixoip - 07-08-2012, 12:39 PM
RE: need help with sha512 - by Gelle - 07-08-2012, 01:03 PM
RE: need help with sha512 - by epixoip - 07-08-2012, 01:35 PM
RE: need help with sha512 - by Gelle - 07-08-2012, 02:04 PM
RE: need help with sha512 - by epixoip - 07-08-2012, 02:11 PM
RE: need help with sha512 - by Gelle - 07-08-2012, 02:24 PM
RE: need help with sha512 - by epixoip - 07-08-2012, 03:33 PM
RE: need help with sha512 - by Gelle - 07-08-2012, 03:35 PM
RE: need help with sha512 - by undeath - 07-08-2012, 04:59 PM
RE: need help with sha512 - by epixoip - 07-09-2012, 05:22 AM
RE: need help with sha512 - by undeath - 07-09-2012, 12:32 PM
RE: need help with sha512 - by epixoip - 07-09-2012, 08:43 PM
RE: need help with sha512 - by atom - 07-09-2012, 09:52 AM
RE: need help with sha512 - by Gelle - 07-10-2012, 11:53 AM
RE: need help with sha512 - by epixoip - 07-10-2012, 01:05 PM
RE: need help with sha512 - by Gelle - 07-10-2012, 02:27 PM
RE: need help with sha512 - by M@LIK - 07-10-2012, 03:16 PM
RE: need help with sha512 - by Gelle - 07-10-2012, 06:04 PM
RE: need help with sha512 - by gat3way - 07-11-2012, 12:29 AM
RE: need help with sha512 - by Gelle - 07-11-2012, 12:56 AM
RE: need help with sha512 - by M@LIK - 07-11-2012, 01:03 AM
RE: need help with sha512 - by Gelle - 07-11-2012, 01:28 AM
RE: need help with sha512 - by gat3way - 07-11-2012, 08:25 AM