Intel® MPI Library
Get help with building, analyzing, optimizing, and scaling high-performance computing (HPC) applications.
2161 Discussions

ITAC -- Naming generated .stf file to differentiate runs

drMikeT
New Contributor I
494 Views

Hello, 

I am using ITAC from the 2017.05 Intel Parallel Cluster Studio. I issue a number of mpirun command lines with ITAC tracing enabled. I am trying though to assign specific names to the generated .stf files so that I can associate the .stf files of a particular run with the corresponding mpirun command.  

How can I do this? 

Is there any option as we have for the statistics with the I_MPI_STATS_FILE?

Can I do something like  

mpiexec.hydra ... -stf-file-name MPIapp_$(date +%F_%T) ... ./MPIapp 

Thank you!

Michael

0 Kudos
1 Reply
jimdempseyatthecove
Honored Contributor III
494 Views
# use 0 padding on left iterate 100 times (00:99)
for SequenceNumber in {00:99}
  do
    mpiexec.hydra ... -stf-file-name MPIapp_$SequenceNumber.sdf ... ./MPIapp
  done

Jim Dempsey

0 Kudos
Reply