Re: Threading methodology

2013-12-08 Thread Marco Leise
Am Sat, 07 Dec 2013 17:53:06 +0100 schrieb Frustrated c1514...@drdrb.com: I have to process n arrays in some partial order. Instead of all working only on the n arrays and reusing them, [...] Wait, what partial order and how is it relevant? Who is all in all working? Why only the n arrays, I

Threading methodology

2013-12-07 Thread Frustrated
I have to process n arrays in some partial order. Instead of all working only on the n arrays and reusing them, if I duplicate them(effectively write once read many) does that make things simpler and allow threading to be used more efficiently? Basically, instead of having to worry about