Errata

High Performance Computing

Errata for High Performance Computing

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 27
Figure 2-3, Post-RISC pipeline

Label is misspelled 'Instruction Recorder Buffer'. The italicized term at
bottom of page 26 is 'instruction reorder buffer'.

Anonymous   
Printed Page 111
in loops.c, the foo() function

The for loop inside the foo() function is missing a semi-colon (;)

The text shows it as:

foo() {
int j;
for(j=0;j<200;j++)
}

It should be:

foo() {
int j;
for(j=0;j<200;j++);
}

Anonymous   
Printed Page 339
There is an error where the HINT benchmark is discussed. The benchmark

was developed by the US DOE Ames Laboratory and Iowa State University. John
Gustafson, Quinn Snell, and Armin Mikler were the primary people involved in
HINT's initial development. NASA had nothing to do with HINT. It was
developed in the Scalable Computing Laboratory in the US DOE Ames Laboratory,
which is on campus at Iowa State University.

Anonymous