Next: Customizing HeNCE Up: HeNCE: A Users' GuideVersion Previous: The HeNCE Trace

A Tutorial Example

This section describes in great detail the process of creating, compiling, and running a simple HeNCE program that computes the dot product of two vectors in parallel. It is best if you actually run htool while reading this section and perform the steps as they are described.

The algorithm used in this example program is extremely simple. Two vectors are allocated. The dot product is computed by splitting the vectors into ``nproc'' subvectors. The dot products of the subvectors are computed in parallel and then the results are summed to form the dot product of the whole vectors. Figure 9 shows the parallel algorithm used. A HeNCE fan construct will be used to create the dprod nodes that run in parallel.

Node init allocates storage for x and y and sets n to their length. It also gives the arrays their initial values. Vector sum will be used to hold the results of the dot product computation on each of the subvectors.

Each replication of dprod will access a subvector of x and y and perform a dot product on them. The result will be stored in a single element of sum. Node output sums the entries in sum to form the final result.

Before beginning to create this HeNCE program, you should verify that you are running X windows (or perhaps Openwindows on a Sun) and that htool is in your command path.

  1. The HeNCE examples package contains all sequential subprograms used in this example. This saves you the bother of typing them in. Go to UNIX directory ``hence-examples/dprod'' and enter ``ls'' to verify that files dprod.c, init.c, and output.c are there.

  2. Begin htool by entering ``htool &'' at the UNIX prompt. This runs it in the background. An htool window with no graph should appear. If the current language is not set to ``C'', you must change it. The current language is shown in the text in the upper left of the htool window. You can toggle the current language between ``C'' and Fortran by picking ``Change Language'' from the HeNCE menu at the upper left of the htool window. This menu also allows you to quit htool.

  3. The first step is to draw the HeNCE graph nodes. The eventual goal is to draw a graph that looks like the one shown in Figure 10. Do not worry if your node placement is not exact or if the node numbers on your screen do not correspond to those shown in the figure, although they will if you draw the nodes in order from bottom to top.

    First draw the nodes. With the left mouse button, click on the circle icon on the left of the screen. This ensures that Computation nodes are currently selected for drawing. (It should be the default.) Move the mouse to the lower center of the htool graph drawing area and click the left mouse button. A Computation node should appear.

    Now draw the next node up from the bottom. Click (left) on the Begin Fan node icon to select and then click (left) above the Computation node just drawn. The Begin Fan should appear. Continue this procedure for all of the nodes in the graph.

  4. Next draw the four arcs in the graph. Notice that they all point up. To draw an arc, first move the mouse to the ``from'' node and press and hold the center mouse button. Continuing to hold the mouse button pressed, move the mouse to the ``to'' node and release the mouse button. This should draw the arc. Do this for all four arcs.

  5. At this point, you are ready to enter each node's program as well as inspect the node subroutines that have already been added.

    Begin with the bottom node (labeled 1 in Figure 10). Open its node program by clicking the right mouse button on it. At this point, an editor window with text like that shown in Figure 11 will appear.

    You should ignore the first line of this text. Do not edit it. However, you must replace the UNDEFINED line and (optionally) the comment with the desired node program. Edit the text to read like that shown in Figure 12, but remember not to change the first line.

    In this node program, the lines that begin with NEW declare variables and allocate storage for them. Many of the variables are also given initial values. The meaning within the program of the variables is described in Figure 9. The line containing ``init'' is the call to sequential subroutine init which is defined in file ``init.c'' and gives initial values to vectors x and y. When this node fires, init will be called.

    When you close the editor window, the text you entered will be parsed. If there is an error, htool will complain and give you a chance to make changes. Otherwise, the subroutine name will appear next to the node.

    You can look at subroutine init at this point by shift-clicking the right mouse button on the node. The subroutine will appear in a text edit window. If file ``init.c'' did not already exist, you would have to type it in at this point. You can inspect the node subroutine of the other compute nodes the same way, after their node programs have been entered.

    Next, you must give the Begin Fan node (labelled 2) its node program as shown in Figure 13. Do not change the FANOUT line, but instead replace the rest with the ``p ='' line shown. This means that the fan will create nproc copies of the subgraph (consisting of one compute node) within it. Each of the copies will have access to a separate variable p which will have value that range from 0 to nproc-1, inclusive.

    Next, give the compute node labelled 3 the node program shown in Figure 14. This is the node that is replicted by the fan. All copies of it will run in parallel. The call to dprod will compute the dot product of vectors a and b which are subvectors of x and y. The lines with the word ``NEW'' define these subvectors. Notice that this program will work only when nproc evenly divides n. More complicated expressions would be needed for the general case.

    The line ``<> sum[p]'' is interesting. The ``<>'' means that what follows will be read from a predecessor node and that any changes made to it will be available to successor nodes. So, each copy of this node will make use of a single element p of vector sum defined in node init to store the result of its dot product. The elements of sum used by each copy of this dproc node will be available as vector sum to node output.

    No control construct ending node requires a node program so there is nothing to be done for the End Fan node with label 4, but you must give the top compute node (label 5) the node program shown in Figure 15. The ``<'' lines mean that this node gets nproc and sum from the nearest predecessor node that defines them. Im this program, nproc comes from init and the elements of sum are set by the copies of the dproc nodes. Subroutine output totals the values in sum and prints the result.

  6. At this point, you should save the graph that you have drawn and annotated. Select ``Save'' from the File menu. You will have to move the mouse over the file name box and enter text. Graph file names end in ``.gr'' by convention so ``dprod.gr'' is a good name to choose.

  7. You are now ready to try and build and run the program. First try to run it on the host on which you ran htool. This is the default if you do not enter a cost matrix. Pick ``Build'' from the PVM Console Build menu. Watch the htool window for error messages. If there are none, you can run your program by selecting ``Run Program'' from the PVM Console Run menu. You should see animation on the HeNCE graph as the program runs.

    When the program completes, a message ``HeNCE executioner exited normally'' will appear in the PVM Console. At this time, pick ``Exit Run Mode'' from the PVM Console Run menu. Notice that HeNCE has created a cost matrix for you. It contains only one host, the one on which you are running htool.

  8. Now try to run the dot product program using two machines. For this, you will have to add another host to the cost matrix. This must be a host that you can rlogin to without entering a password and for which PVM and the HeNCE libraries have been installed.

    Pick ``Add from Graph'' from the PVM Console Edit window. Another row will be added to the default cost matrix created in the previous step. You must enter values into all of its fields by moving the mouse to a field and typing. Enter the hostname of the second machine and costs for all subroutines. You can just use the value 1 for all costs. At this point, save the cost matrix by picking ``Save'' from the PVM Console File menu and entering a file name, which should end in ``.mat'' by convention.

    Build and run just as before. You will see animation on the graph and two hosts in the strip chart at the bottom of the PVM Console. When the program completes, pick ``Exit Run Mode'' mode also just like before.

  9. When a HeNCE program runs, it creates a trace file which you can use to review your programs execution. Pick ``Load Trace File'' from the HeNCE Graph Trace menu. Notice that HeNCE has created a trace file with the default name ``hence.trace.'' Go ahead and load it to enter trace mode. The VCR-like control icons in the upper right of the graph segment control the replay. Click on the rightmost, the ``play'' button. You will see the runtime animation repeated. Press the left-most button to rewind. Then repeatedly press the button that is second from the right. This is the single step forward button. The middle button is ``stop,'' and the second button is ``single step backwards.'' When you have finished experimenting with trace replay, pick ``Exit Trace Mode'' from the Trace menu.

  10. This is the end of the tutorial. You have entered and run a parallel program using more than one host, and you have replayed its execution using HeNCE's trace facility.

    Before you leave htool, pick ``Halt PVM'' from the PVM Console PVM menu. Do not forget to do this, or you will leave PVM daemon processes running. To exit htool, pick ``Quit'' from the HeNCE Menu at the upper left of the htool window.



Next: Customizing HeNCE Up: HeNCE: A Users' GuideVersion Previous: The HeNCE Trace


newton@utkcs.cs.utk.edu
Wed Jun 15 15:13:55 EDT 1994