Quote from LAtoLV:
Billed as the first personal supercomputer for under $10,000.
http://www.nvidia.com/object/personal_supercomputing.html
Me likes. Me wants. Me buy?
Great so windows takes less time in between lock ups
Quote from LAtoLV:
Billed as the first personal supercomputer for under $10,000.
http://www.nvidia.com/object/personal_supercomputing.html
Me likes. Me wants. Me buy?
Quote from jprad:
Charging you extra for what amounts to an amateurish hack shouldn't be tolerated in something that's advertised for trading professionals.
Quote from jprad:
Actually, there's a special term for this sort of problem and it's treated fairly well here:
http://en.wikipedia.org/wiki/Embarrassingly_parallel
Quote from vikana:
Personally, it'd rather see a board with 100 386-instruction set CPUs where normal software would have an easier time of exploiting the parallelism.
Quote from intradaybill:
Maybe my knowledge is too limited on this subject but I don't see how the example I gave is embarassingly parallel when the evaluation of one variable depends on the value of another variable.
AS far as APS I understand that searching for patterns in 2 data files can run in parallel but the question is whether they can do a single search to run in paraller processing mode. In fact, all I do is a signle search at a time.
Quote from dcraig:
That is just what Intel's Larrabee is about:
http://www.ddj.com/architect/216402188
This could be very interesting.
Quote from jprad:
No, your example is pretty straightforward, and it can be parallelized. But, it's easier to think of all this in terms of atomic functions. Let's start with:
a = f(b)
c = f(d)
Since the dependent variables in each, 'a' and 'c' are independent of each other their functions can be parallelized.
On the other hand, the sequence:
a = f(b)
c = f(a)
cannot be parallelized since 'a' has be be computed first because 'c' is now dependent on 'a.' (and no, 'y' in your example isn't dependant on 'x' in the same was as here since the value of 'x' is constant during the entire iteration of the inner loop.)
Quote from vikana:
The biggest issue/problem with the Tesla architecture is that you have to re-design your software around their APIs. For some that's easy, but for many, it's probably not a good fit.
If your software already is highly distributed and parallel without lots of locking, cuda might fit. Otherwise, it's a bit project to support it.
Quote from jimbojim:
This cannot be parallelized (easily).
Bozo...
Quote from jimbojim:
WTF you bozo retard, wiki freak.
Look at his example carefully:
main()
{
x = 0
y = array[100]
for i = 0 to 100
x = x+1
fork_thread(i, proc_x(y, i, x))
end
wait_thread(100)
print(x, y[100])
}
proc_x(array y, int i, int x)
{
for j = 1 to 1000
y[i] = x+2j
next
return
}
Bozo...