in reply to Threads From Hell #3: Missing Some Basic Prerequisites [Solved]
You are queueing pixel by pixel. But the threads can calculate (x,y) by themselves. Why not do the following:
my $width = 1280 * 4; my $height = 1024 * 4; $picturesize = $width * $height; for(my $i=0; $i< $picturesize-1; $i+=32){ $start = $i; $end = $i+32; $x1 = int(($start % $width) /4); $y1 = int(($start / $width) /4); $x2 = int(($end % $width) /4); $y2 = int(($end / $width) /4); printf("(%4d,%4d)..(%4d,%4d) %d\n", $x1,$y1,$x2,$y2, $i); }
This way, the main program only uses the picture size (a large integer), and increases it by 32 units (4 pixels with four byte RGBA perl pixel, I guess). And you give it a start and stop range: $i .. $i+32. The thread can then use those numbers to calculate back the pixels (x,y) themselves, in parallel.
startthread($from,$to,$width)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Threads From Hell #3: Missing Some Basic Prerequisites
by karlgoethebier (Abbot) on May 30, 2015 at 14:48 UTC | |
by FreeBeerReekingMonk (Deacon) on May 31, 2015 at 21:01 UTC | |
by FreeBeerReekingMonk (Deacon) on May 31, 2015 at 21:37 UTC |