Table of Contents
This chapter describes running an instrumented application and the generation and subsequent analysis of profile data. Profiling shows the summary statistics of performance metrics that characterize application performance behavior. Examples of performance metrics are the CPU time associated with a routine, the count of the secondary data cache misses associated with a group of statements, the number of times a routine executes, etc.
After instrumentation and compilation are completed, the profiled
                   application is run to generate the profile data files. These files can be
                   stored in a directory specified by the environment variable
                   PROFILEDIR. By default, profiles are placed in the
               		current directory. You can also set the TAU_VERBOSE
               		enviroment variable to see the steps the TAU measurement systems takes
               		when your application is running.
               
                   Example: 
            
% setenv TAU_VERBOSE 1 % setenv PROFILEDIR /home/sameer/profiledata/experiment55 % mpirun -np 4 matrix
These are some other environment variables you can set to enable these
               		advanced MPI measurement features. TAU_TRACK_MESSAGE
               		tracks MPI message statistics when profiling or messages lines when tracing.
               		TAU_COMM_MATRIX generates MPI communication matrix
               		data.