Safe power draw
#16
(10-17-2018, 08:59 AM)philsmd Wrote: As epixoip mentioned there is a limit for several OpenCL drivers that each memory allocation can't be more than 1/4 of the available VRAM. if you, in theory, allocate 4 times (multiple times) you have 4 * 1/4 = 1 and therefore could in theory use the full VRAM available.... The problem is that there is extra cost (and speed drop) in maintaining more than one separate buffers/allocations, so that is not really a good solution except for a few exceptions like scrypt etc (where we have some work around in place already)
The benefit of large GPU memory buffers is of course to load more digests, have more room for longer rules (with more rule functions), allow different TMTO settings for algos like scrypt etc.
The problem often is that the GPU has e.g. 8 GB ram, but you can only allocate 1/4 * 8 = 2 GB of 8 GB (with one single allocation/buffer) because of that silly restriction (miss interpretation of the spec).
Thanks for explaining.


Messages In This Thread
Safe power draw - by elidell - 10-07-2018, 03:23 PM
RE: Safe power draw - by soxrok2212 - 10-07-2018, 05:27 PM
RE: Safe power draw - by elidell - 10-07-2018, 06:23 PM
RE: Safe power draw - by undeath - 10-07-2018, 06:06 PM
RE: Safe power draw - by elidell - 10-07-2018, 06:21 PM
RE: Safe power draw - by undeath - 10-07-2018, 07:35 PM
RE: Safe power draw - by elidell - 10-12-2018, 02:58 AM
RE: Safe power draw - by epixoip - 10-07-2018, 08:43 PM
RE: Safe power draw - by niceguy123 - 10-17-2018, 07:22 AM
RE: Safe power draw - by epixoip - 10-08-2018, 11:05 PM
RE: Safe power draw - by elidell - 10-09-2018, 12:01 AM
RE: Safe power draw - by elidell - 10-09-2018, 12:07 AM
RE: Safe power draw - by epixoip - 10-09-2018, 12:30 AM
RE: Safe power draw - by epixoip - 10-12-2018, 03:45 AM
RE: Safe power draw - by philsmd - 10-17-2018, 08:59 AM
RE: Safe power draw - by niceguy123 - 10-18-2018, 06:06 AM