Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tau2profile(1) [debian man page]

TAU2PROFILE(1)							       Tools							    TAU2PROFILE(1)

NAME
tau2profile - convert TAU tracefiles to TAU profile files SYNOPSIS
tau2vprofile [-d directory] [-s snapshot_interval] {tau_tracefile} {tau_eventfile} DESCRIPTION
This program is generated when TAU is configured with the -TRACE option. The tau2profile converter takes a single tau_tracefile (*.trc) and tau_eventfile (*.edf) and produces a corresponding series of profile files. The input files must be specified in that order, with optinal parameters coming afterward. Multi-file TAU traces must be merged before conversion. OPTIONS
-d Output profile files to the specified 'directory' rather than the current directory. -s Output a profile snapshot showing the state of the profile data accumulated from the trace every 'snapshot_interval' time units. The snapshot profiles are placed sequentially in directories labled 'snapshot_n' where 'n' is an integer ranging from 0 to to the total number of snapshots -1. EXAMPLES
The program must be run with the tau trace and tau event files specified in the command line in that order. Any additional arguments follow. The following will produce a profile file array, from the TAU trace and event files merged.trc and tau.edf trace file: tau2profile merged.trc tau.edf The following will convert merged.trc and tau.edf to a series of profiles one directory higher. It will also produce a profile snapshot every 250,000 time units: tau2profile merged.trc tau.edf -d ./.. -s 250000 SEE ALSO
vtf2profile(1), tau2vtf(1), tau2otf(1), tau_merge(1), tau_convert(1) 12/22/2005 TAU2PROFILE(1)

Check Out this Related Man Page

TAU2OTF(1)							       Tools								TAU2OTF(1)

NAME
tau2otf - convert TAU tracefiles to OTF tracefiles for Vampir/VNG SYNOPSIS
tau2otf [-n streams] [-nomessage] [-v] DESCRIPTION
This program is generated when TAU is configured with the -otf=<otf_dir> option. The tau2otf trace converter takes a TAU formatted tracefile (*.trc) and a TAU event description file (*.edf) and produces an output trace file in the Open Trace Format (OTF). The user may specify the number of output streams for OTF. The input files and output file must be specified in that order. TAU traces should be merged using tau_merge prior to conversion. OPTIONS
-n streams Specifies the number of output streams (default is 1). -nomessage Suppresses printing of message information in the trace. -v Verbose mode sends trace event descriptions to the standard output as they are converted. EXAMPLES
The program must be run with the tau trace, tau event and otf output files specified in the command line in that order. Any additional arguments follow. The following will produced an OTF file, a pp.otf and other related event and definition files, from the TAU trace and event files merged.trc and tau.edf trace file: tau2otf merged.trc tau.edf app.otf SEE ALSO
tau2vtf(1), tau2profile(1), vtf2profile(1), tau_merge(1), tau_convert(1) 12/22/2005 TAU2OTF(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ls shows directories only? how

1) how to show directories in ls command? i went to man ls, and saw this -d flag but doesnt help.. 2) say we put this alias ls='ls -F' in .profile.. how do we let inform .profile that there is a new entry besides restarting the system. thanks. my shell is KSH. (4 Replies)
Discussion started by: yls177
4 Replies

2. Shell Programming and Scripting

I need to delete the content out of a number of logs

I'm just starting out in scripting (taking online classes) but I need to know how to clean out (delete) the content of a number of logs. All of the files end in 'trc'. Does anyone have a script or command (SED or AWK) I can use? Julie (4 Replies)
Discussion started by: Jbolin01
4 Replies

3. UNIX for Dummies Questions & Answers

To remove carriage return between the line

Hi, I have a situation where I need to remove the carriage return between the lines. For.eg. The input file: 1,ad,"adc sdfd",edf 2,asd,"def fde",asd The output file should be 1,ad,adc sdfd,edf 2,asd,def fde,asd Thanks Shash (5 Replies)
Discussion started by: shash
5 Replies

4. UNIX for Dummies Questions & Answers

mv command

I need to mv '.trc' files that are more than 7 days old from one directory to another directory. Can somebody help. Thanks. (3 Replies)
Discussion started by: FeNiCrC_Neil
3 Replies

5. UNIX for Dummies Questions & Answers

PS Command

Hi Can anybody tell me the difference between the e,f,d in this command "ps -edf" and "ps -ed" I did man ps but i need a better explanation about differences about the e,d,f Regards (1 Reply)
Discussion started by: sucram
1 Replies

6. UNIX for Dummies Questions & Answers

Awk help needed..

I have to add number in column 1 by month. 1531 Feb 1 2007 pgaps_p007_27909.trc 1529 Feb 1 2007 pgaps_p006_27907.trc 1533 Feb 1 2007 pgaps_p005_27905.trc 635 Apr 7 2007 pgaps_smon_2347.trc 634 Apr 7 2007 pgaps_lgwr_2343.trc 634 Apr 8 2007 pgaps_lgwr_2311.trc 613 Apr 10 2007... (4 Replies)
Discussion started by: findprakash
4 Replies

7. Shell Programming and Scripting

calculate the average of time series data using AWK

Hi, I have two time series data (below) merged into a file. t1 and t2 are in unit of second I want to calculate the average of V1 every second and count how many times "1" in V2 is occur within a second Input File: t1 V1 t2 V2 10.000000... (5 Replies)
Discussion started by: nica
5 Replies

8. Shell Programming and Scripting

Add a particular column

hi, My file looks like this. 010,09102009,abc,30 010,09112009,abc,20 010,08102009,edf,40 010,09152009,edf,60 020,09102009,abc,30 020,09112009,abc,60 this continus like this , I need to add the last coloumn, based on the first coloumn and 3rd coloumn. If the first and third coloumn, are... (6 Replies)
Discussion started by: madfox
6 Replies

9. UNIX for Dummies Questions & Answers

Making a script for .trc

People i need to do a script something like depura. to eliminate the .trc, the traces of a data base, i know that you cand usea find end exec but i need somethoing diferent in the script can anybody gimme any ideas? Thank you very mucha for your time. (5 Replies)
Discussion started by: enkei17
5 Replies

10. Shell Programming and Scripting

Help with extract using awk

I am trying to get the filenames which is $9 when i use ls -lrt but i am getting only some of the name using below command. ls -lrt *.edf is it bcs the filename has spaces in between them? How can I get the complete file name in cases like this? (19 Replies)
Discussion started by: dsravan
19 Replies

11. Shell Programming and Scripting

Print merged rows from two files by applying if condition

Hi all, I have list of two kind of files and I want to compare the rows and print the merged data by applying if condition. First kind of file looks like: and second kind of file looks like : I want to print the rows present in second file followed by 3 more columns from first... (6 Replies)
Discussion started by: CAch
6 Replies

12. Shell Programming and Scripting

Writing a Perl Script that processes multiple files

I want to write a Perl script that manipulates multiple files. In the directory, I have files 250.*chr$.ped where * is from 1 to 1000 and $ is from 1-22 for a total of 22 x 10,000 = 22,000 files. I want to write a script that only manipulates files 250.1chr*.ped where * is from 1 to 22.... (10 Replies)
Discussion started by: evelibertine
10 Replies

13. UNIX for Dummies Questions & Answers

Take 100MB worth files from 200,000 Files

Hi, I have a process which creates almost 200K files. Each file ranging from 1kb to 5kb. This is almost 2GB of data in all files. I have a requirement where the business needs only 100MB worth of files. Is there a way to get files around 100MB (doesn't have to be exactly 100MB) from all the... (2 Replies)
Discussion started by: grep_me
2 Replies

14. UNIX for Dummies Questions & Answers

Formatting Array Output

Hello All, Q1) I have the below code but when the email was sent out all lines are merged and coming out as a single line though my printf statement has newline "\n", How do i avoid that? Q2) In my second IF statement when i introduced the backslash "\" for continuation of a line or command, i... (10 Replies)
Discussion started by: Ariean
10 Replies

15. Shell Programming and Scripting

Some help with a find/fuser/gzip crontab job

Hello, I am trying to write a housekeeping that finds all .trc files older than x days in a given FS, checks if they are used and gzips them if they are not used by any process. I need to do it without calling any additional .sh script. I managed to make it work for Linux only: find .... (4 Replies)
Discussion started by: Valkov
4 Replies