B.1 Digital Fortran 90 Compiler Error Messages

The following High Performance Fortran (HPF) related error messages may be issued when errors occur during the compilation or the execution of Digital Fortran 90 programs containing HPF extensions.

The number of processors specified at compilation time does not match the number of processors actually available. 0

User Action: Reenter the command with the correct number of processors.

The number of processors specified in a processors directive does not match the number of processors actually available. 0

User Action: Reenter the command with the correct number of processors.

Unresolved: _hpf_compiled_for_N_nodes 0

Probable Cause: When attempting to link, not all objects were compiled for the same number of peers.

User Action: Recompile the incorrectly compiled objects specifying the correct value for the -wsf flag's optional [nn] field. You can use the nm utility to find out the number of peers for which an object was compiled. For example, to find out the number of peers for which an object named foo.o was compiled, use the following command:

nm -A foo.o | grep compiled_for

With the following command, you can produce a listing of the number of peers for which every object file in the working directory was compiled:

nm -A *.o | grep compiled_for

See the man page for nm for more information on the nm utility.