From e4911b40db265876be7eeab208ee98ace36359f9 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 15 Oct 2010 09:24:47 -0400 Subject: [PATCH] Fix links into src/average for average.c and flowchart.pdf. --- content/point_to_point/index.shtml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/point_to_point/index.shtml b/content/point_to_point/index.shtml index e20a927..051a394 100644 --- a/content/point_to_point/index.shtml +++ b/content/point_to_point/index.shtml @@ -337,10 +337,10 @@ The file contains x and a y coordinates of points that you can display with gnuplot. We seek the average and standard deviation of the y column.

-

The code average.c solves this -problem using a serial algorithm. Note the use of malloc -and free to reserve and release memory space. This allows -for flexible and general code.

+

The code average.c solves +this problem using a serial algorithm. Note the use +of malloc and free to reserve and release +memory space. This allows for flexible and general code.

A parallel implementation of the solution could use an algorithm in which the data is divided among all the processes. This illustrates @@ -351,8 +351,8 @@ parallel computer is tipically much larger than the memory of a single computer, allowing larger problems to be solved.

The algorithm of a parallel implementation is illustrated in a -simplified flowchart. Note the -following:

+simplified flowchart. Note +the following: