1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
//******************************************************************************
//
// File: WorkerRegion.java
// Package: edu.rit.pj
// Unit: Class edu.rit.pj.WorkerRegion
//
// This Java source file is copyright (C) 2010 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************
package edu.rit.pj;
import edu.rit.util.LongRange;
import edu.rit.util.Range;
import java.util.Iterator;
/**
* Class WorkerRegion is the abstract base class for a worker region that is
* executed by a {@linkplain WorkerTeam} of threads distributed across the
* processes of a cluster parallel program.
* <P>
* To execute a worker region, create a {@linkplain WorkerTeam} object; create
* an instance of a concrete subclass of class WorkerRegion; and pass this
* instance to the worker team's <TT>execute()</TT> method. You can do all this
* using an anonymous inner class; for example:
* <PRE>
* new WorkerTeam().execute (new WorkerRegion()
* {
* public void start()
* {
* // Initialization code
* . . .
* }
* public void run()
* {
* // Parallel code
* . . .
* }
* public void finish()
* {
* // Finalization code
* . . .
* }
* });
* </PRE>
* <P>
* The worker team's <TT>execute()</TT> method does the following. In each
* process, the worker team has a certain number of <B>worker threads</B>
* <I>K</I>, where <I>K</I> was specified when the worker team was constructed.
* In the highest-ranked process of the communicator, there is a <B>master
* thread</B> in addition to the worker threads. The <B>main thread</B> is the
* thread calling the worker team's <TT>execute()</TT> method. The main thread
* calls the worker region's <TT>start()</TT> method. When the <TT>start()</TT>
* method returns, all the worker threads, plus the master thread if any, call
* the worker region's <TT>run()</TT> method concurrently. When all the team
* threads have returned from the <TT>run()</TT> method, the main thread calls
* the worker region's <TT>finish()</TT> method. When the <TT>finish()</TT>
* method returns, the main thread returns from the worker team's
* <TT>execute()</TT> method.
* <P>
* The chief purpose of a worker team is to execute a work-sharing parallel loop
* in a cluster parallel program, partitioning the loop iterations among the
* worker threads in all the processes. The worker team uses the
* <B>master-worker pattern</B> to partition the iterations. The master thread
* partitions the loop iterations and sends tasks to the worker threads; the
* worker threads send results back to the master thread. The worker team uses a
* certain <B>communicator</B> to do this message passing. The communicator was
* specified when the worker team was constructed. For further information, see
* class {@linkplain WorkerIntegerForLoop} and {@linkplain WorkerLongForLoop}.
* <P>
* Within each process, variables to be shared by all threads in the team may be
* declared as fields of the WorkerRegion subclass. (Variables cannot be shared
* between processes.) The <TT>start()</TT> method is intended for performing
* initialization in a single thread before parallel execution begins. If no
* such initialization is needed, omit the <TT>start()</TT> method. The
* <TT>run()</TT> method contains code to be executed in parallel by all threads
* in the team. Variables that are private to each thread may be declared inside
* the <TT>run()</TT> method. The <TT>finish()</TT> method is intended for
* performing finalization in a single thread after parallel execution ends. If
* no such finalization is needed, omit the <TT>finish()</TT> method.
* <P>
* If the worker region's <TT>start()</TT> method throws an exception, the
* worker team's <TT>execute()</TT> method throws that same exception, and the
* <TT>run()</TT> method is not called.
* <P>
* If the worker region's <TT>run()</TT> method throws an exception in one of
* the team threads, the exception's stack trace is printed on the standard
* error, the worker team waits until all the other team threads have returned
* from the <TT>run()</TT> method, then the worker team's <TT>execute()</TT>
* method throws that same exception, and the worker region's <TT>finish()</TT>
* method is not called. If the worker region's <TT>run()</TT> method throws an
* exception in more than one of the team threads, each exception's stack trace
* is printed on the standard error, the worker team waits until all the other
* team threads have returned from the <TT>run()</TT> method, then the worker
* team's <TT>execute()</TT> method throws a {@linkplain
* MultipleParallelException} wrapping all the thrown exceptions, and the worker
* region's <TT>finish()</TT> method is not called.
* <P>
* If the worker region's <TT>finish()</TT> method throws an exception, the
* worker team's <TT>execute()</TT> method throws that same exception.
*
* @author Alan Kaminsky
* @version 07-Oct-2010
*/
public abstract class WorkerRegion
extends WorkerConstruct
{
// Exported constructors.
/**
* Construct a new worker region.
*/
public WorkerRegion()
{
super();
}
// Exported operations.
/**
* Perform initialization actions before parallel execution begins. Only one
* thread in each process calls the <TT>start()</TT> method.
* <P>
* The <TT>start()</TT> method may be overridden in a subclass. If not
* overridden, the <TT>start()</TT> method does nothing.
*
* @exception Exception
* The <TT>start()</TT> method may throw any exception.
*/
public void start()
throws Exception
{
}
/**
* Execute parallel code. All threads of the worker team in each process
* call the <TT>run()</TT> method concurrently.
* <P>
* The <TT>run()</TT> method must be implemented in a subclass.
*
* @exception Exception
* The <TT>run()</TT> method may throw any exception.
*/
public abstract void run()
throws Exception;
/**
* Perform finalization actions after parallel execution ends. Only one
* thread in each process calls the <TT>finish()</TT> method.
* <P>
* The <TT>finish()</TT> method may be overridden in a subclass. If not
* overridden, the <TT>finish()</TT> method does nothing.
*
* @exception Exception
* The <TT>finish()</TT> method may throw any exception.
*/
public void finish()
throws Exception
{
}
/**
* Execute a worker for loop within this worker region. For further
* information, see class {@linkplain WorkerIntegerForLoop}. The loop index
* goes from <TT>first</TT> (inclusive) to <TT>last</TT> (inclusive) in
* steps of +1. If <TT>first</TT> is greater than <TT>last</TT>, then no
* loop iterations are performed.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param first First loop index.
* @param last Last loop index.
* @param theLoop Worker for loop.
*
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>theLoop</TT> is null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theLoop</TT>'s methods throws an exception.
*/
public final void execute
(int first,
int last,
WorkerIntegerForLoop theLoop)
throws Exception
{
// Verify preconditions.
if (theLoop == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker for loop is null");
}
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
try
{
// Record parallel team.
theLoop.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
Range range = new Range (first, last);
if (w == -1)
{
theLoop.masterExecute (range);
}
else
{
theLoop.workerExecute (w, range);
}
}
finally
{
// Forget parallel team.
theLoop.myTeam = null;
}
}
/**
* Execute a worker for loop within this worker region. For further
* information, see class {@linkplain WorkerIntegerStrideForLoop}. The loop
* index goes from <TT>first</TT> (inclusive) to <TT>last</TT> (inclusive)
* in steps of <TT>stride</TT>. The stride must be positive. If
* <TT>first</TT> is greater than <TT>last</TT>, then no loop iterations are
* performed.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param first First loop index.
* @param last Last loop index.
* @param stride Loop index stride, >= 1.
* @param theLoop Worker for loop.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <TT>stride</TT> < 1.
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>theLoop</TT> is null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theLoop</TT>'s methods throws an exception.
*/
public final void execute
(int first,
int last,
int stride,
WorkerIntegerStrideForLoop theLoop)
throws Exception
{
// Verify preconditions.
if (stride <= 0)
{
throw new IllegalArgumentException
("WorkerRegion.execute(): Stride = " + stride + " illegal");
}
if (theLoop == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker for loop is null");
}
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
try
{
// Record parallel team.
theLoop.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
Range range = new Range (first, last, stride);
if (w == -1)
{
theLoop.masterExecute (range);
}
else
{
theLoop.workerExecute (w, range);
}
}
finally
{
// Forget parallel team.
theLoop.myTeam = null;
}
}
/**
* Execute a worker for loop within this worker region. For further
* information, see class {@linkplain WorkerLongForLoop}. The loop index
* goes from <TT>first</TT> (inclusive) to <TT>last</TT> (inclusive) in
* steps of +1. If <TT>first</TT> is greater than <TT>last</TT>, then no
* loop iterations are performed.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param first First loop index.
* @param last Last loop index.
* @param theLoop Worker for loop.
*
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>theLoop</TT> is null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theLoop</TT>'s methods throws an exception.
*/
public final void execute
(long first,
long last,
WorkerLongForLoop theLoop)
throws Exception
{
// Verify preconditions.
if (theLoop == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker for loop is null");
}
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
try
{
// Record parallel team.
theLoop.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
LongRange range = new LongRange (first, last);
if (w == -1)
{
theLoop.masterExecute (range);
}
else
{
theLoop.workerExecute (w, range);
}
}
finally
{
// Forget parallel team.
theLoop.myTeam = null;
}
}
/**
* Execute a worker for loop within this worker region. For further
* information, see class {@linkplain WorkerLongStrideForLoop}. The loop
* index goes from <TT>first</TT> (inclusive) to <TT>last</TT> (inclusive)
* in steps of <TT>stride</TT>. The stride must be positive. If
* <TT>first</TT> is greater than <TT>last</TT>, then no loop iterations are
* performed.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param first First loop index.
* @param last Last loop index.
* @param stride Loop index stride, >= 1.
* @param theLoop Worker for loop.
*
* @exception IllegalArgumentException
* (unchecked exception) Thrown if <TT>stride</TT> < 1.
* @exception NullPointerException
* (unchecked exception) Thrown if <TT>theLoop</TT> is null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theLoop</TT>'s methods throws an exception.
*/
public final void execute
(long first,
long last,
long stride,
WorkerLongStrideForLoop theLoop)
throws Exception
{
// Verify preconditions.
if (stride <= 0)
{
throw new IllegalArgumentException
("WorkerRegion.execute(): Stride = " + stride + " illegal");
}
if (theLoop == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker for loop is null");
}
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
try
{
// Record parallel team.
theLoop.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
LongRange range = new LongRange (first, last, stride);
if (w == -1)
{
theLoop.masterExecute (range);
}
else
{
theLoop.workerExecute (w, range);
}
}
finally
{
// Forget parallel team.
theLoop.myTeam = null;
}
}
/**
* Execute a worker iteration within this worker region. For further
* information, see class {@linkplain WorkerIteration}. The items processed
* by the iteration are the elements of the given array. The iteration order
* is from index 0 upwards.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param <T> Data type of the items iterated over.
* @param theArray Array containing the items.
* @param theIteration Worker iteration.
*
* @exception NullPointerException
* (unchecked exception) Thrown if this is the master process and
* <TT>theArray</TT> is null. Thrown if <TT>theIteration</TT> is null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theIteration</TT>'s methods throws an exception.
*/
public final <T> void execute
(T[] theArray,
WorkerIteration<T> theIteration)
throws Exception
{
// Verify preconditions.
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
if (myTeam.rank == myTeam.masterRank() && theArray == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Array is null");
}
if (theIteration == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker iteration is null");
}
try
{
// Record parallel team.
theIteration.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
if (w == -1)
{
theIteration.masterExecute
(new ArrayItemGenerator<T> (theArray));
}
else
{
theIteration.workerExecute (w);
}
}
finally
{
// Forget parallel team.
theIteration.myTeam = null;
}
}
/**
* Execute a worker iteration within this worker region. For further
* information, see class {@linkplain WorkerIteration}. The items processed
* by the iteration are the items returned by the given iterator. The
* iteration order is that of the given iterator.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param <T> Data type of the items iterated over.
* @param theIterator Iterator over the items.
* @param theIteration Worker iteration.
*
* @exception NullPointerException
* (unchecked exception) Thrown if this is the master process and
* <TT>theIterator</TT> is null. Thrown if <TT>theIteration</TT> is
* null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theIteration</TT>'s methods throws an exception.
*/
public final <T> void execute
(Iterator<T> theIterator,
WorkerIteration<T> theIteration)
throws Exception
{
// Verify preconditions.
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
if (myTeam.rank == myTeam.masterRank() && theIterator == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Iterator is null");
}
if (theIteration == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker iteration is null");
}
try
{
// Record parallel team.
theIteration.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
if (w == -1)
{
theIteration.masterExecute
(new IteratorItemGenerator<T> (theIterator));
}
else
{
theIteration.workerExecute (w);
}
}
finally
{
// Forget parallel team.
theIteration.myTeam = null;
}
}
/**
* Execute a worker iteration within this worker region. For further
* information, see class {@linkplain WorkerIteration}. The items processed
* by the iteration are the items contained in the given iterable
* collection. The iteration order is that of the given iterable
* collection's iterator.
* <P>
* <I>Note:</I> Either all threads in the worker team must call the
* <TT>execute()</TT> method with identical arguments, or none of the
* threads must call the <TT>execute()</TT> method.
*
* @param <T> Data type of the items iterated over.
* @param theIterable Iterable collection containing the items.
* @param theIteration Worker iteration.
*
* @exception NullPointerException
* (unchecked exception) Thrown if this is the master process and
* <TT>theIterable</TT> is null. Thrown if <TT>theIteration</TT> is
* null.
* @exception IllegalStateException
* (unchecked exception) Thrown if no worker team is executing this
* worker region.
* @exception Exception
* Thrown if one of <TT>theIteration</TT>'s methods throws an exception.
*/
public final <T> void execute
(Iterable<T> theIterable,
WorkerIteration<T> theIteration)
throws Exception
{
// Verify preconditions.
if (myTeam == null)
{
throw new IllegalStateException
("WorkerRegion.execute(): No parallel team executing");
}
if (myTeam.rank == myTeam.masterRank() && theIterable == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Iterable collection is null");
}
if (theIteration == null)
{
throw new NullPointerException
("WorkerRegion.execute(): Worker iteration is null");
}
try
{
// Record parallel team.
theIteration.myTeam = this.myTeam;
// Get current parallel team thread.
WorkerTeamThread currentThread = getCurrentThread();
int w = currentThread.myIndex;
// Do master or worker thread processing.
if (w == -1)
{
theIteration.masterExecute
(new IteratorItemGenerator<T> (theIterable.iterator()));
}
else
{
theIteration.workerExecute (w);
}
}
finally
{
// Forget parallel team.
theIteration.myTeam = null;
}
}
}
|